-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
70 lines (70 loc) · 1.23 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
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE HTML>
<html>
<head>
<title>Google</title>
<link rel="stylesheet" type="text/css" href="Styles.css">
</head>
<body>
<div id="box">
<!-- Navbar -->
<div>
<ul id="topbar">
<li>
<button id="login">Log in</button>
</li>
<li id="app">
<img src="./Images/Apps.png">
</li>
<li>
<p>Images</p>
</li>
<li>
<p>Gmail</p>
</li>
<li>
<p>+Name</p>
</li>
</ul>
</div>
<div id="middlepart">
<!-- Google logo
<img id="logo" src="./Images/Google2.png"/> -->
</div>
<div>
<!-- Searchbar -->
<form id="searchbar">
<input type="text">
</form>
<!-- Buttons -->
<button id="luck">Google search</button>
<button id="luck">I'm feeling lucky</button>
</div>
<div id="bottombar">
<!-- Bottom right bar -->
<ul id="bottomright">
<li>
<p>Settings</p>
</li>
<li>
<p>Terms & Services</p>
</li>
<li>
<p>Privacy</p>
</li>
</ul>
<!-- Bottom left bar -->
<ul id="bottomleft">
<li>
<p>About</p>
</li>
<li>
<p>Business</p>
</li>
<li>
<p>Advertisement</p>
</li>
</ul>
</div>
</div>
</body>
</html>