-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (36 loc) · 1.83 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
59
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search</title>
<link rel="stylesheet" href="style.css">
<link rel=”stylesheet” href=”https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css”rel=”nofollow” integrity=”sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I” crossorigin=”anonymous”>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div id=" upper_ribbon">
<div class="upperlink">
<a href="advanced.html">Advanced</a>
<a href="immage.html">Images</a>
</div>
</div>
<div id="logo_area">
<h1>CS50WP23</h1>
<h2><em>Search</em></h2>
<h6><em>Powered by Google</em></h6>
</div>
<div id="SearchBox">
<form action="https://www.google.com/search">
<div class="SearchBar">
<span class="detective-lens"></span>
<input type="text" name="q" placeholder="Search">
</div>
<div id="CenterButtonDiv">
<div id="SearchButtons" class="GSearch"><input type="submit" value="Google Search"></div>
<div id="SearchButtons" class="LSearch"><input type="submit" value="I'm Feeling Lucky" formaction="https://www.google.com/doodles" ></div>
</div>
</form>
</div>
</div>
</body>
</html>