-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
70 lines (70 loc) · 2.13 KB
/
test.html
File metadata and controls
70 lines (70 loc) · 2.13 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NOL 인터파크</title>
<link rel="stylesheet" href="css/layout.css" />
<link rel="stylesheet" href="css/header.css" />
</head>
<body>
<!-- 영역구분 : 내용과 바탕 -->
<div class="wrap">
<!-- 영역구분: 상단 -->
<header class="header">
<!-- 상단 -->
<div class="header_top">
<div class="header_top_left">
<a href="#" class="logo">로고</a>
<div class="search">
<!-- 검색폼 -->
<form action="#" method="get">
<input
type="text"
name="good"
id="good"
placeholder="인기공연 타임딜"
/>
<button>검색</button>
</form>
<!-- 검색폼 -->
</div>
<a href="#" class="sale">국내할인상품배너</a>
</div>
<div class="header_top_right">
<a href="#" target="_blank">NOL</a>
<a href="#" target="_blank">TRIPLE</a>
<a href="#" target="_blank">Inerpark Global</a>
</div>
</div>
<!-- 하단 -->
<div class="header_bottom">
<div class="header_bottom_left">왼쪽 주메뉴</div>
<div class="header_bottom_right">오른쪽 회원메뉴</div>
</div>
</header>
<!-- 영역구분: 내용 -->
<main class="main">
<!-- 배너 -->
<div class="banner"></div>
<!-- 투어 -->
<div class="tour"></div>
<!-- 트립 -->
<div class="trip"></div>
<!-- 티켓랭킹 -->
<div class="ticket"></div>
<!-- 라이브 -->
<div class="live"></div>
</main>
<!-- 영역구분: 하단 -->
<footer class="footer">
<!-- 하단 메뉴 -->
<div></div>
<!-- 회사정보 -->
<div></div>
<!-- 카피라이터 등 -->
<div></div>
</footer>
</div>
</body>
</html>