-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (83 loc) · 2.52 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
<!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="style/style.css" />
<title>Google</title>
</head>
<body>
<!-- Header Section -->
<header>
<!-- Navigation Menu -->
<nav>
<ul class="nav__links">
<li><a href="">Gmail</a></li>
<li><a href="">Images</a></li>
<!-- Google logo -->
<li>
<a href=""
><img src="assets/appsbutton.svg" width="48px" alt=""
/></a>
</li>
<li>
<a href=""><img src="assets/profile-picture.jpg" alt="" /></a>
</li>
</ul>
</nav>
</header>
<!-- Main Content Section -->
<main>
<!-- Google Logo Section -->
<section class="main__logo">
<!-- Google logo image -->
<img src="assets/logo.png" alt="Google Logo" />
</section>
<!-- Search and Buttons Section -->
<section class="main__search">
<div class="main__searchbox">
<!-- Search button -->
<div>
<a href=""><img src="assets/search.svg" alt="" /></a>
</div>
<!-- Search input box -->
<div><input type="text" /></div>
<!-- Voice search button -->
<div>
<a href=""><img src="assets/voicelogo.png" alt="" /></a>
</div>
<!-- Google Lens button -->
<div>
<a href=""><img src="assets/lens.png" alt="" /></a>
</div>
</div>
<!-- Search Buttons -->
<div class="main__btns">
<!-- "Google Search" button -->
<button>Google Search</button>
<!-- "I'm Feeling Lucky" button -->
<button>I'm Feeling Lucky</button>
</div>
</section>
</main>
<!-- Footer Section -->
<footer>
<!-- Top Part of Section -->
<div class="footer__up">Türkiye</div>
<!-- Bottom Part of Section (Left and Right) -->
<div class="footer__down">
<!-- Left-side links -->
<div class="down__left">
<a href="">About</a><a href="">Advertising</a><a href="">Business</a
><a href="">How Search works</a>
<!-- Left-side links -->
</div>
<!-- Right-side links -->
<div class="down__right">
<a href="">Privacy</a><a href="">Terms</a><a href="">Settings</a>
<!-- Right-side links -->
</div>
</div>
</footer>
</body>
</html>