-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.85 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
38
39
40
41
42
43
44
45
46
<DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Google UI Clone</title>
<link rel="icon" type="image/png" src="assets/google_logo.png"/>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<header class="menu">
<div class="menu__section left">
<img class="menu__icon" src="assets/burger-icon.svg" alt="Menu"/>
<a class="menu__link active"> All </a>
<a class="menu__link"> Images </a>
</div>
<div class="menu__section right">
<img class="menu__icon" src="assets/more-icon.svg" alt="More"/>
<div class="menu__profile">
<img class="menu__avatar--frame" src="assets/circle-frame.svg" alt="Avatar frame"/>
<img class="menu__avatar" src="https://www.flaticon.com/svg/static/icons/svg/1508/1508843.svg" widtch="40px" height="40px" alt="Avatar picture"/>
</div>
</div>
</header>
<main class="content">
<img class="content__logo" src="assets/logo.svg" alt="UI Clone"/>
<input class="content__search" type="text"/>
<div class="content__offer">
Made with ♥ for <a href="https://www.linkedin.com/in/lysialeao189411199/">Lysia Leão </a> with Rocketseat for studying purposes.
</div>
</main>
<footer class="footer">
<div class="footer__section footer__location">
<span> Brazil </span>
</div>
<div class="footer__section footer__links">
<a> Settings </a>
<a> Privacy </a>
<a> Terms </a>
</div>
</footer>
</body>
</html>