-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (47 loc) · 1.46 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
<DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>Clone da página do google</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header>
<nav>
<a href="#">Gmail</a>
<a href="#">Imagens</a>
<a href="#"><img id="btn-options" src="img/options2.png"></a>
<a id="btn-login" href="#">Fazer login</a>
</nav>
</header>
<main>
<img src="img/logo.png" alt="logo">
<form>
<div id="div-search" tabindex="1">
<input type="text" size="30" id="input-search">
<a href="#"><img id="img-teclado" src="img/teclado.png" alt="teclado virtual"></a>
<a href="#"><img src="img/microfone.png" alt="microfone"></a>
</div>
<div>
<input class="btn" type="submit" value="Pesquisa Google">
<input class="btn" type="submit" value="Estou com sorte">
</div>
</form>
</main>
<footer>
<p>Brasil</p>
<nav>
<div id="left">
<a href="#">Publicidade</a>
<a href="#">Negócios</a>
<a href="#">Sobre</a>
</div>
<div id="right">
<a href="#">Privacidade</a>
<a href="#">Termos</a>
<a href="#">Configurações</a>
</div>
</nav>
</footer>
</body>
</html>