-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (69 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<script src="https://kit.fontawesome.com/f870c7346d.js" crossorigin="anonymous"></script>
<title>Document</title>
</head>
<body>
<div class="whole-page">
<div class="header">
<div class="nav-bar">
<ul class="bar-left">
<li><a href ='#'>About</a></li>
<li><a href = '#'>Store</a></li>
</ul>
<ul class="bar-right">
<li class = 'li-move-top'><a href = '#'>Gmail</a></li>
<li class = 'li-move-top'><a href = '#'>Images</a></li>
</ul>
<ul>
<li><a href = '#'><img src = './waffle-icon.png'></a></li>
<li class = 'circle-li'><a href = '#'><img src = './user_logo.PNG' alt = 'user-image'></a>'</li>
</ul>
</div>
<div class="main-content">
<div class="actual-content">
<img src = './google_logo.png' alt = 'google-logo'>
<br>
<div class="search-container">
<i class="fas fa-search " ></i>
<input type = 'text' placeholder = 'Search Google or type a URL ' onfocus ="this.placeholder ='' " onblur = "this.placeholder = 'Search Google or type a URL'" >
<i class="fas fa-microphone"></i>
</div>
<div class="input-boxes">
<span>Google Search</span>
<span>I'm Feeling Lucky</span>
</div>
<div class="lang">
Google offered in: <a href = '#'>Francais</a>
</div>
</div>
</div>
<div class="footer">
<div class = 'footer-top'>
Canada
</div>
<div class="footer-bottom">
<div class="bottom-left-footer">
<ul>
<li><a href = '#'>Advertising</a></li>
<li><a href = '#'>Business</a></li>
<li><a href = '#'>How Search works</a></li>
</ul>
</div>
<div class="bottom-right-footer">
<ul>
<li><a href = '#'>Privacy</a></li>
<li><a href = '#'>Terms</a></li>
<li><a href = '#'>Settings</a></li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>