-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (34 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search</title>
<style>
body {
background-color: rgba(0, 0, 0, 0.879);
}
</style>
</head>
<link rel="stylesheet" href="index.css">
<body>
<div class="links">
<a href="index_images.html">Google Images</a>
<a href="https://www.google.com/advanced_search">Advanced Search</a>
</div>
<div class="main">
<img src="images/google_logo.png" alt="Google Logo">
<div class="container">
<form action="https://www.google.com/search">
<div class="background_input">
<div>
<input class="text_box" type="text" name="q">
</div>
</div>
<div class="submit_button">
<input class="text_button1" type="submit" value="Google Search">
<input class="text_button2" type="submit" value="I'm Felling Lucky">
</div>
</form>
</div>
</div>
</body>
</html>