-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (72 loc) · 2.61 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
<!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</title>
<link rel="icon" href="favicon.png" />
<link href="style.css" rel="stylesheet">
<link href="reset.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<header class="page-header">
<a class="gmail headerIcon" href="#">Gmail</a>
<a class="images headerIcon" href="#">Images</a>
<a class="icoApp headerIcon" href="#" onclick="maFunction()">
<img src="img/ico-app.png" alt="Applications Google" width="18" height="18">
</a>
<div id="drop" class="inactive">
<a href="#">1</a>
<a href="#">2</a>
<a href="#">3</a>
<a href="#">4</a>
<a href="#">5</a>
<a href="#">6</a>
</div>
<a class="ponpon headerIcon" href="https://github.com/Tychebt">
<img src="img/ponpon.png" alt="image de profil GitHub de Tychebt" width="18" height="18">
</a>
</header>
<main>
<div class="logogg">
<img src="img/googlelogo.png" alt="logo de Google">
</div>
<div class="searchBar">
<img class="loupe" src="img/loupe.png" alt="loupe de recherche">
<input type="search" id="name" name="name" size="60">
<img class="asvocal" src="img/picto-assist-vocal.png" alt="assisance vocale">
</div>
</div>
<div class="boutons">
<form class="btnrech" action="#">
<button type="button">Recherche Google</button>
</form>
<form class="btnchan" action="#">
<button type="button">J'ai de la chance</button>
</form>
</div>
<div class="dispLang">Google disponible en : <a href="#">English</a></div>
</main>
<footer class="page-footer">
<p class="pays">France</p>
<p class="ecolo">
<img src="img/index.png" alt="feuille écologique" width="12" height="12">
Neutre en carbone depuis 2007
</p>
<div class="foocontainer">
<a href="#">A propos</a>
<a href="#">Publicité</a>
<a href="#">Entreprise</a>
<a href="#">Comment fonctionne la recherche Google ?</a>
<a href="#">Info consommateurs</a>
<a href="#">Confidentialité</a>
<a href="#">Conditions</a>
<a href="#">Paramètres</a>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>