-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
35 lines (34 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Google</title>
<link rel="icon" href="images/favicon.ico">
<!-- Make sure to link in a stylesheet here-->
</head>
<body>
<!-- The header of the webpage -->
<div class="top-container">
<p class="about">About</p>
<p class="store">Store</p>
<p class="gmail">Gmail</p>
<p class="images">Images</p>
<img src="images/nine-dots.png" alt="nine-dots" class="nine-dots">
<!--Modify the name of your headshot below-->
<img src="images/headshot.jpeg" alt="pfp" class="pfp">
</div>
<!-- The logo, search bar, and buttons -->
<div class="middle-container">
<img src="images/logo.png" alt="logo" class="logo">
<div class="textbox">
<input type="text", class="bar">
<img src="images/search-icon.png" alt="search-icon" class="search">
<img src="images/voice-icon.jpeg" alt="voice-icon" class="voice">
</div>
<div class = "buttons">
<button type="button" class="search-button">Google Search</button>
<button type="button" class="lucky-button">I'm Feeling Lucky</button>
</div>
</div>
</body>
</html>