-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnav.html
More file actions
29 lines (29 loc) · 751 Bytes
/
nav.html
File metadata and controls
29 lines (29 loc) · 751 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="nav.css">
<link
href="https://cdn.jsdelivr.net/npm/remixicon@4.7.0/fonts/remixicon.css"
rel="stylesheet"
/>
</head>
<body>
<div id="main">
<div id="nav">
<i class="ri-apple-fill"></i>
<h3>store</h3>
<h3>mac</h3>
<h3>iphone</h3>
<h3>watch</h3>
<h3>ipods</h3>
<h3>support</h3>
<i class="ri-search-line"></i>
<i class="ri-shopping-bag-fill"></i>
</div>
<div id="center"></div>
</div>
</body>
</html>