-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (33 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link href="navigation.css" rel="stylesheet" type="text/css" />
<title>navigation</title>
</head>
<body>
<div class="wrap">
<div class="title">데모 페이지 바로가기</div>
<ul>
<li>
<a href="./vendingMachine/vendingMachine.html">vendingMachine</a>
<div class="description">자판기를 구현한 페이지</div>
</li>
<li>
<a href="./airbnb/airbnb.html">airbnb</a>
<div class="description">airbnb 메인 페이지의 디자인만 구현한 페이지</div>
</li>
<li>
<a href="./amazon/amazon.html">amazon slider</a>
<div class="description">아마존의 슬라이드를 참고하여 캐러셀 슬라이더를 구현한 페이지</div>
</li>
<li>
<a href="./searchUI/searchUI.html">searchUI</a>
<div class="description">검색어 자동 완성을 구현한 페이지</div>
</li>
</ul>
</div>
</body>
</html>