-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (77 loc) · 2.32 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<title> Google</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="nav-container">
<ul>
<span id="left-side">
<li><a href="#">About</a>
<li><a href="#">Store</a>
</span>
<span id="right-side">
<li><a href="#">Gmail</a>
<li><a href="#">Images</a>
<li><button id="google-apps"></button>
<li><button id="profile">Profile</button>
</span>
</ul>
<!-- first attempt at nav bar and it just got too meessy
<nav>
<div id="left-container">
<a href="#">About</a>
<a href="#">Store</a>
</div>
<div id="right-container">
<a href="#"> Gmail</a>
<a href="#"> Images</a>
<button id="google-apps"></button>
<img id="profile" src="/Icons/profile/2x/account.png" id="Profile-photo">
</div>
</nav>
</div>
-->
</div>
<div>
<img id="Logo" src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Google Logo">
</div>
<div id="search-bar">
<input type="text" placeholder="Search">
</div>
<div class="container">
<div>
<button id="search-button"> Google Search</button>
</div>
<div>
<button id="lucky-button">I'm Feeling Lucky</button>
</div>
</div>
<div>
<footer>
<span class="center-links">
<ul id="">
<li><a href="#">Carbon neutral since
2007</a>
</li>
</ul>
<ul>
</span>
<span id="">
<li><a href="#">Advertising </li>
<li><a href="#">Business </li>
<li><a href="#">How Searches Work</li>
</ul>
<ul>
</span>
<span id="">
<li><a href="#">Privacy </li>
<li><a href="#">Terms </li>
<li><a href="#">Settings</li>
</ul>
</span>
</footer>
</div>
</body>
</html>