-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2024 Mission 2</title>
<link rel="stylesheet" href="/css/style.css" />
</head>
<body>
<header class="header">
<div class="container header-inner">
<a href="#" class="logo">
<img src="/images/logo.svg" alt="Noel">
</a>
<input type="checkbox" name="" id="menu-control" class="menu-control">
<label for="menu-control" class="menu-btn">
<svg class="menu-icon open" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368">
<path d="M120-240v-80h720v80H120Zm0-200v-80h720v80H120Zm0-200v-80h720v80H120Z"/>
</svg>
<svg class="menu-icon close" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#5f6368"><path d="m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z"/></svg>
</label>
<ul class="menu">
<li class="menu-list"><a href="#">首頁</a></li>
<li class="menu-list"><a href="#">作品集</a></li>
<li class="menu-list"><a href="#">服務項目</a></li>
<li class="menu-list"><a href="#">部落格</a></li>
<li class="menu-list"><a href="#">聯絡我</a></li>
</ul>
</div>
</header>
<div class="container">
</div>
</body>
</html>