-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (38 loc) · 971 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Layout-13</title>
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="./assets/images/ellipse.svg" alt="ellipse" />
<h1>NEWWAVE®</h1>
</div>
<ul>
<li>HELLO</li>
<li>WORKS</li>
<li>PROFILE</li>
<li>CONTACT</li>
</ul>
<div class="menu">
<p>MENU</p>
<img src="./assets/images/menu.svg" alt="menu icon" />
</div>
</nav>
</header>
<main class="grid">
<p>New</p>
<div class="circle">
<img src="./assets/images/circle.png" alt="" />
</div>
<p>WRITE UNDER THE MOON</p>
<p>Wave</p>
</main>
</body>
</html>