-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (64 loc) · 3.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"><!--Responsive-->
<meta http-equiv="X-UA-Compatible" content="ie=edge"><!--Internet Explorer Compatibility-->
<title>Google</title>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="favicon.ico"><!--FavIcon-->
</head>
<body>
<!--Start: Top Bar-->
<div class="top-bar">
<div class="container">
<ul class="list-unstyled float-right">
<li class="float-left"><a href="#">Gmail</a></li>
<li class="float-left"><a href="#">Images</a></li>
<li class="float-left"><button>Sign in</button></li>
</ul>
<div class="clearfix"></div>
</div>
</div>
<!--End: Top Bar-->
<!--Start: Search Section-->
<div class="search">
<!--No need for the container div here as the div is centered by text-center-->
<div class="search-content text-center">
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Google logo image">
<form action="#" method="POST">
<input type="text" name="search" placeholder="Search Google or type a URL">
<input type="submit" value="Google Search">
<input type="submit" value="I'm Feeling Lucky">
</form>
<span><img src="http://www.gstatic.com/images/branding/googlemic/2x/googlemic_color_24dp.png" alt="voice search"></span>
<div class="triangle-speech-bubble">Search by voice</div>
<p>Google offered in: <a href="#">العربية</a></p>
</div>
</div>
<!--End: Search Section-->
<!--Start: Footer-->
<footer>
<div class="first-half">
<div class="container">Egypt</div>
</div>
<div class="second-half">
<div class="container">
<ul class="list-unstyled float-left">
<li class="float-left"><a href="#">Advertising</a></li>
<li class="float-left"><a href="#">Business</a></li>
<li class="float-left"><a href="#">About</a></li>
<li class="float-left"><a href="#">How Search works</a></li>
</ul>
<ul class="list-unstyled float-right">
<li class="float-left"><a href="#">Privacy</a></li>
<li class="float-left"><a href="#">Terms</a></li>
<li class="float-left"><a href="#">Settings</a></li>
</ul>
<div class="clearfix"></div>
</div>
</div>
</footer>
<!--End: Footer-->
</body>
</html>