-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-grid.html
More file actions
32 lines (32 loc) · 948 Bytes
/
index-grid.html
File metadata and controls
32 lines (32 loc) · 948 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
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style/normalize.css" />
<link rel="stylesheet" href="./style/style.css" />
<title>My Fiends</title>
</head>
<body>
<div class="wrap">
<header class="header">
<h1 class="header-logo">
<a href="/" class="toHome"><img src="./asset/logo.svg" alt="" /></a>
</h1>
<div class="profile">
<a href="/" class="toProfile"
><img src="./asset/profile.png" alt=""
/></a>
</div>
</header>
<main class="main">
<div class="search">search</div>
<div class="categories">categories</div>
<div class="cards">cards</div>
</main>
<div class="footer-wrap">
<footer class="footer">footer</footer>
</div>
</div>
</body>
</html>