-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.33 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>당근마켓 클론코딩</title>
<link rel="shortcut icon" type="image/x-icon" href="https://d1unjqcospf8gs.cloudfront.net/favicon.ico" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="navigation-wrapper">
<nav class="navigation">
<div class="left-side-container">
<img
class="logo"
src="./images/logo.svg"
>
<div class="searchbar-container">
<input
placeholder="동네 이름, 물품명 등을 검색해보세요!"
/>
<img
class="searchbar-icon"
src="./images/search.svg"
/>
</div>
</div>
<div class="button-container">
<button>
<img src="./images/apple.svg">
<span>App Store</span>
</button>
<button>
<img src="./images/google.svg">
<span>Google Play</span>
</button>
</div>
</nav>
</div>
<header>
<h1>중고거래 인기매물</h1>
</header>
<div class="content-wrapper">
<main class="content">
</main>
</div>
</body>
</html>