-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 1.95 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Totally Real Google</title>
<link rel="stylesheet" href="resources/css/style.css">
</head>
<body>
<ul id="header">
<li>Gmail</li>
<li>Images</li>
<li>Signin not available, sorry :(</li>
</ul>
<form id="search-form" action="search.html">
<img src="resources/img/googlelogo_color_272x92dp.png" id="logo">
<br>
<input type="text" id="q" name="q">
<br>
<input type="submit" class="search-button" value="Google Search">
<input type="button" class="search-button" value="I'm Feeling Lucky" onclick="javascript:window.location.href = 'https://www.youtube.com/watch?v=dQw4w9WgXcQ'">
</form>
<div id="footer">
<div id="privacy-reminder">
<div class="left">
<img src="resources/img/privacy.png">
<p id="privacy-reminder-text">A privacy reminder from Google</p>
</div>
<div class="right">
<button class="privacy-reminder-button">
Remind me later
</button>
<button class="privacy-reminder-button review">
Review now
</button>
</div>
</div>
<p id="country">Denmark</p>
<div id="links">
<ul class="left">
<li>Advertising</li>
<li>Business</li>
<li>About</li>
<li>How Search doesn't work</li>
</ul>
<ul class="right">
<li>Privacy</li>
<li>Terms</li>
<li>Settings</li>
</ul>
</div>
</div>
</body>
</html>