-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
100 lines (93 loc) · 4.57 KB
/
header.html
File metadata and controls
100 lines (93 loc) · 4.57 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="stylesheet" href="./css/header.css">
</head>
<body>
<header>
<nav>
<div class="imgDiv">
<a href="./index.html">
<img src="./image/주당로고배경x.png" width="120px" />
</a>
</div>
<div class="navBar">
<ul>
<li><a href="./regionView.html">지역별로 보기</a></li>|
<li><a href="./jdti.html">주류 MBTI</a></li>|
<li><a href="./festival.html">주류 페스티벌</a></li>
</ul>
</div>
<div class="searchLogin">
<div class="searchInput">
<input type="search" placeholder="제품검색 ex) 안동소주" />
</div>
<div class="login">
<a href="./loginPage.html">
<img src="./image/person-circle.svg" width="30px" />
</a>
</div>
</div>
<div class="ham">
<nav class="navbar bg-body-tertiary fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">
<img src="./image/주당로고배경x.png" width="120px" />
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="offcanvas"
data-bs-target="#offcanvasNavbar" aria-controls="offcanvasNavbar"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvasNavbar"
aria-labelledby="offcanvasNavbarLabel">
<div class="offcanvas-header">
<img src="./image/주당로고배경x.png" width="120px" />
<button type="button" class="btn-close" data-bs-dismiss="offcanvas"
aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav justify-content-end flex-grow-1 pe-3">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./regionView.html">지역별로 보기</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/jdti.html">주류 MBTI</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./festival.html">주류 페스티벌</a>
</li>
</ul>
<form class="d-flex mt-3" role="search">
<input class="form-control me-2" type="search" placeholder="제품검색 ex) 안동소주"
aria-label="Search">
<button class="btn btn-outline-success" type="submit" style="width: 70px;">검색</button>
</form>
</div>
</div>
</div>
</nav>
</div>
</nav>
</header>
<main>
<section class="1"></section>
<section class="2"></section>
<section class="3"></section>
<section class="4"></section>
</main>
<footer>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"></script>
</body>
</html>