-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (35 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search</title>
<link rel="stylesheet" href= "style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="nav">
<a href="image_search.html">Image Search</a>
<a href="advanced_search.html">Advanced Search</a>
</div>
<div id="main">
<h1 id="first">G</h1>
<h1 id="second">o</h1>
<h1 id="third">o</h1>
<h1 id="fourth">g</h1>
<h1 id="fifth">l</h1>
<h1 id="sixth">e</h1>
</div>
<div id="search">
<form action="https://www.google.com/search">
<input type="text" name="q">
</div>
<div class="buttons">
<div class="button1">
<input type="submit" value="Google Search">
</div>
<div class="button2">
<input type="submit" value="I'm Feeling Lucky" name="btnI">
</div>
</div>
</form>
</body>
</html>