-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (63 loc) · 1.9 KB
/
index.html
File metadata and controls
78 lines (63 loc) · 1.9 KB
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
<html>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="stylesheet.css" />
</head>
<body>
<div class="page">
<!-- navbar -->
<nav class="nav">
<ul>
<li><a href="#home">about</a></li>
<li><a href="#news">store</a></li>
<li style="float:right"><a class="active">Images</a></li>
<li style="float:right"><a class="active">Gmail</a></li>
</ul>
</nav>
<!-- navbar -->
<div id="logo">
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png">
</div>
<form action="/form/submit" method="GET">
<input type="text" name="text" class="search" placeholder="Search">
</form>
<div class="main__submit">
<button type="submit" class="main__submit--search">Google Search</button>
<button class="main__submit--lucky">I'm Feeling Lucky</button>
</div>
</div>
</body>
<!-- footer -->
<footer class="footer">
<div>
<ul class="footer__list">
<li class="footer__item" style="padding-left: 0;">
<a href="#" class="footer__link">Advertising</a>
</li>
<li class="footer__item">
<a href="#" class="footer__link">Business</a>
</li>
<li class="footer__item">
<a href="#" class="footer__link">About</a>
</li>
<li class="footer__item">
<a href="#" class="footer__link">How Search works</a>
</li>
</ul>
</div>
<div>
<ul class="footer__list">
<li class="footer__item" style="padding-left: 0;">
<a href="#" class="footer__link">Privacy</a>
</li>
<li class="footer__item">
<a href="#" class="footer__link">Terms</a>
</li>
<li class="footer__item">
<a href="#" class="footer__link">Settings</a>
</li>
</ul>
</div>
</footer>
<!-- footer -->