-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (53 loc) · 1.5 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
<!doctype html>
<html>
<head>
<title>Google</title>
<link href="./css/style.css" rel="stylesheet" media="all" />
</head>
<body>
<div id="nav">
<ul>
<li><a href="#">+Sethu</a></li>
<li><a href="#">Gmail</a></li>
<li><a href="#">Images</a></li>
<li><a class="apps" href="#" title="Apps"></a></li>
<li>
<a class="sign-in-btn" href="#">Sign In</a>
</button>
</li>
</ul>
</div>
<div id="content">
<div id="logo">
<img src="./img/logo.png" height="95" width="269" alt="Google"/>
</div>
<table id="search-box">
<tr>
<td>
<input id="search-field" type="text">
</td>
<td>
<span id="voice-search" alt="Voice Search" title="Search by Voice"></span>
</td>
</tr>
</table>
<button class="search-button" id="google-search-btn">
<span>Google Search</span>
</button>
<button class="search-button" id="feeling-lucky-btn">
<span>I'm Feeling Lucky<span>
</button>
</div>
<div id="footer">
<ul class="left">
<li><a href="#">Advertising</a></li>
<li><a href="#">Business</a></li>
<li><a href="#">About</a></li>
</ul>
<ul class="right">
<li><a href="#"><span class="red">Updated</span> Privacy & Terms</a></li>
<li><a href="#">Settings</a></li>
</ul>
</div>
</body>
</html>