-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (69 loc) · 3.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="src/style.css" />
<link rel="shortcut icon" href="src/images/google-small-logo.png" type="image/x-icon" />
<title>Google</title>
</head>
<body>
<section>
<header>
<nav>
<div id="left-nav">
<a href="https://about.google/?fg=1&utm_source=google-GB&utm_medium=referral&utm_campaign=hp-header" target="_blank">About</a>
<a href="https://store.google.com/GB?utm_source=hp_header&utm_medium=google_ooo&utm_campaign=GS100042&hl=en-GB" target="_blank">Store</a>
</div>
<div id="right-nav">
<a href="https://mail.google.com/mail/?authuser=0&ogbl" target="_blank">Gmail</a>
<a href="https://www.google.com/imghp?hl=en&authuser=0&ogbl" id="imagesLink" target="_blank">Images</a>
<a href="#" id="menuBars"><i class="fa-solid fa-bars"></i></a>
<img src="src/images/profile-image.jpg" alt="User's Google profile image" title="Google Account
Mary Smith
</div>
</nav>
</header>
<main>
<section>
<img src="src/images/google-large-logo.png" alt="Google's logo" />
<div id="inputSection">
<i class="fa-solid fa-magnifying-glass" id="inputIcon"></i>
<input id="inputField" type="text" title="Search" autocomplete="off"/>
<i class="fa-solid fa-xmark" id="xMark"></i>
</div>
<button type="button" id="searchBtn">Google Search</button>
</section>
</main>
</section>
<footer>
<section id="locationSection">
<p>United Kingdom</p>
</section>
<section id="mainFooterSection">
<div>
<a href="https://www.google.com/intl/en_uk/ads/?subid=ww-ww-et-g-awa-a-g_hpafoot1_1!o2&utm_source=google.com&utm_medium=referral&utm_campaign=google_hpafooter&fg=1" target="_blank">Advertising</a>
<a href="https://www.google.com/services/?subid=ww-ww-et-g-awa-a-g_hpbfoot1_1!o2&utm_source=google.com&utm_medium=referral&utm_campaign=google_hpbfooter&fg=1" target="_blank">Business</a>
<a href="https://google.com/search/howsearchworks/?fg=1" target="_blank">How Search works</a>
</div>
<div id="middle">
<i class="fa-brands fa-envira"></i>
<a href="https://sustainability.google/?utm_source=googlehpfooter&utm_medium=housepromos&utm_campaign=bottom-footer&utm_content=" target="_blank">Our third decade of climate action: join us</a>
</div>
<div>
<a href="https://policies.google.com/privacy?hl=en-GB&fg=1" target="_blank">Privacy</a>
<a href="https://policies.google.com/terms?hl=en-GB&fg=1" target="_blank">Terms</a>
<a href="#" id="settingBtn">Settings</a>
<div id="darkModeSettings" data-mode="Off">
<p id="darkModeBtn">Dark Mode: Off <i class="fa-solid fa-toggle-off"></i></p>
</div>
</div>
</section>
</footer>
<script src="src/index.js"></script>
</body>
</html>