-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (60 loc) · 2.53 KB
/
index.html
File metadata and controls
66 lines (60 loc) · 2.53 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google</title>
<meta name="description" content="Clone da página inicial do Google desenvolvido com HTML5 e CSS3 por Guilherme Magno para fins de estudo.">
<meta property="og:type" content="website"/>
<meta property="og:title" content="Google"/>
<meta property="og:description" content="Clone da página inicial do Google desenvolvido com HTML5 e CSS3 por Guilherme Magno para fins de estudo."/>
<meta property="og:url" content="https://devmagno.github.io/ui-clone-google"/>
<meta property="og:image" content="https://devmagno.github.io/ui-clone-google/public/img/google-og.png"/>
<link rel="stylesheet" href="public/styles/style.css">
<link rel="shortcut icon" href="public/img/google-favicon.png" type="image/x-icon">
</head>
<body>
<header class="menu">
<div class="menu__section left">
<img src="public/img/burger-icon.svg" class="menu__icon" alt="Menu">
<a href="#" class="menu__link active">All</a>
<a href="#" class="menu__link">Images</a>
</div>
<div class="menu__section right">
<img src="public/img/more-icon.svg" class="menu__icon" alt="More">
<div class="menu__profile">
<a href="https://github.com/devMagno" target="_blank">
<img class="menu__avatar--frame" src="public/img/circle-frame.svg" alt="Avatar frame">
</a>
<img class="menu__avatar" src="https://lh3.googleusercontent.com/ogw/ADGmqu-BpvKwSRM6JOrLIUygQKCB0EsQ2RdXgLCaNi1R6g=s32-c-mo" alt="Avatar picture">
</div>
</div>
</header>
<main class="content">
<img class="content__logo" src="public/img/logo.png" alt="Google">
<div class="content__search-container">
<label for="search" class="content__search-label">
<img src="public/img/search.svg" alt="Pesquisar">
</label>
<input class="content__search" type="text" id="search">
</div>
<div class="content__buttons">
<a href="">Pesquisa Google</a>
<a href="">Estou com sorte</a>
</div>
<div class="content__offer">
Feito com ❤️ por <a href="https://www.linkedin.com/in/guilhermemagno/" target="_blank">Guilherme Magno</a>
</div>
</main>
<footer class="footer">
<div class="footer__section footer__location">
<span>Brazil</span>
</div>
<div class="footer__section footer__links">
<a href="">Settings</a>
<a href="">Privacy</a>
<a href="">Terms</a>
</div>
</footer>
</body>
</html>