-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (64 loc) · 2.1 KB
/
index.html
File metadata and controls
71 lines (64 loc) · 2.1 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
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Smith's Google</title>
<link
rel="stylesheet"
crossorigin="anonymous"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
/>
<link rel="stylesheet" href="style.css">
<script src="results.js"></script>
</head>
<body>
<nav>
<a class="nav-item nav-a" href="#">Gmail</a>
<a class="nav-item nav-a" href="#">Images</a>
<i class="fas fa-bars fa-2x nav-item"></i>
<i class="fas fa-user-circle fa-2x nav-item"></i>
</nav>
<section>
<div>
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png"/>
<div class="BoxWrap">
<span class="SearchIcon"><img class="search-icon" src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Vector_search_icon.svg/945px-Vector_search_icon.svg.png"/></span>
<input class="search-box" type="text"> </input>
<span class="Mic"><img class="search-icon" src="https://upload.wikimedia.org/wikipedia/commons/e/e8/Google_mic.svg"/>
</span>
</div>
<div>
<button onclick="ViewResults()">Google Search</button>
<button>I'm feeling lucky!</button>
</div>
<div class="language-bar">
<span>Google offered in:</span>
<a class="language"href="#">Francais</a>
<a class="language"href="#">English</a>
<a class="language"href="#">中文</a>
</div>
</section>
<footer>
<div>
<div class= title>
Vietnam
</div>
</div>
<div class = "second">
<div class="left">
<a class ="footer-a" href="#">Advertise</a>
<a class ="footer-a"href="#">Business</a>
<a class ="footer-a" href="#">About</a>
<a class ="footer-a" href="#">How Search Works</a>
</div>
<div class="right">
<a class ="footer-a" href="#">Privacy</a>
<a class ="footer-a" href="#">Terms</a>
<a class ="footer-a" href="#">Settings</a>
</div>
</div>
</footer>
</body>
</html>