-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 960 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Google Search</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="nav_bar">
<a href="images.html">Google Images</a>
<a href="advanced.html">Advanced Search</a>
</div>
<div class="form">
<form action="https://google.com/search">
<div class="container">
<img src="images/googlelogo_color_272x92dp.png" alt="google_logo" height="150px">
</div>
<div>
<input type="text" name="q" class="ques_box">
</div>
<div>
<input type="submit" name="btnk" value="Google Search" class="search_button">
<input type="submit" name="btnI" value="I'm Feeling Lucky" class="search_button">
</div>
</form>
</div>
</body>
</html>