-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject0.html
73 lines (45 loc) · 1.43 KB
/
project0.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
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Search</title>
<link rel="stylesheet" type="text/css" href="project0.css">
</head>
<body>
<header>
<nav class="menu">
<ul>
<li>
<a class ="active" href="project0.html">Google Search</a>
</li>
<li>
<a href="image_search.html">Image Search</a>
</li>
<li>
<a href="advanced_search.html">Advanced Search</a>
</li>
</ul>
</nav>
</header>
<div class=google_tag>
<img class="logo_img" src="logo_google.jpg" width="280" height="220" >
</div>
<div id="forum" >
<form action="https:\\www.google.com\search" method="GET">
<div class="inp_item_div" >
<div class="inp_search">
<img class = "search-img" src="search_icon.jpg" style="opacity: 0.4;">
<input class="input" type="text" name="q" placeholder="">
<input type="submit" value="Submit" style="visibility: hidden;">
<input class="close_icon" type="reset" value="X" >
</div>
<div class="btns">
<input class="search_ggl" value="Google Search" aria-label="Google Search" name="btnK" type="submit" >
<input class="feel_lucky" value="I'm Feeling Lucky" aria-label="I'm Feeling Lucky" name="btnI" type="submit" >
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>