-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (42 loc) · 2.32 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
<!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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="/styles.scss">
<link rel="stylesheet" href="/styles.css">
<title>Buscador</title>
</head>
<body>
<div class = "container-fluid">
<ul class=" m-3 nav">
<li class = "nav-item">
<a class= "nav-link text-dark" href = "http://about.google.com/">Sobre</a>
</li>
<li class = "nav-item">
<a class= "nav-link text-dark" href = "http://store.google.com/">Loja</a>
</li>
<li class = "ms-auto nav-item">
<a class= "nav-link text-dark" href = "http://www.google.com/gmail/">Gmail</a>
</li>
<li class = "nav-item">
<a class= "nav-link text-dark" href = "https://www.google.com/images">Imagens</a>
</li>
<li class="nav-item">
<a class = "btn btn-primary" href = "http://accounts.google.com/ServiceLogin" role="button">Iniciar Sessão</a>
</ul>
<br>
<br>
<div class = "text-center">
<img alt="GoogleLogo" class = "img-fluid w-25" src = "https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png">
<form action = "https://www.google.com/search" class = "mt-4" method = "get">
<input autocomplete = 'off' autofocus class = "form-control form-control-lg mb-4 mx-auto w-50" placeholder = "Escreva Aqui" type = "search">
<button class = "btn btn-light" type="submit" method = "get" >Buscar</button>
<button class = "btn btn-light" name="btnI" type = "submit" method = "get">Estou com sorte</button>
</form>
</div>
</div>
</body>
</html>