-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
96 lines (84 loc) · 3.21 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!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">
<title>google UI Clone using only Html and CSS only.</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<!-- first part, top -->
<nav>
<div class="first-container">
<!-- chi siamo -->
<a href="https://about.google/" class="links light-links">Chi siamo</a>
<!-- Google Store -->
<a href="https://store.google.com/" class="links light-links">Google Store</a>
</div>
<div class="second-container">
<!-- 1 -->
<div class="example-service-container">
<!-- Gmail -->
<a href="https://mail.google.com/" class="links white-links">Gmail</a>
<!-- Immagini -->
<a href="https://images.google.com/" class="links white-links">Immagini</a>
</div>
<!-- let's create a gap between -->
<!-- 2 -->
<div class="icon-container">
<!-- menu -->
<div>
<img src="./images/menu.svg" alt="">
</div>
<!-- my logo -->
<div>
<img src="./images/devninja.jpg" alt="">
</div>
</div>
</div>
</nav>
<!-- second part, centered -->
<div class="center-container">
<div class="logo-container">
<img src="./images/Google-Icon.png" alt="Google logo">
</div>
<div class="searchbar-container">
<img src="./images/search.svg" alt="">
<input type="text" value="" name="q" form="search-form">
<img src="./images/microphone.svg" alt="">
</div>
<div class="buttons-container">
<input type="submit" value="Cerca con Google" form="search-form">
<input type="submit" value="Mi sento fortunato">
</div>
</div>
<form id="search-form" action="https://www.google.com/search" method="GET"></form>
<!-- third part, bottom -->
<footer>
<div class=" first-footer ">Italia</div>
<div class="footer-links ">
<!-- 1 -->
<div class="first-links-container ">
<a href="# ">Pubblicità</a>
<a href="# ">Soluzioni Aziendali</a>
<a href="# ">Come funziona la Ricerca</a>
</div>
<!-- 2 -->
<div class="second-links-container ">
<img src="./images/green.png " alt=" ">
<a href="# ">Carbon neutral dal 2007</a>
</div>
<!-- 3 -->
<div class="third-links-container ">
<a href="# ">Privacy</a>
<a href="# ">Termini</a>
<a href="# ">Impostazioni</a>
</div>
</div>
</footer>
</body>
</html>