-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (53 loc) · 2.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
<!DOCTYPE html>
<html>
<head>
<title>Google Homepage Clone</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-compatible" content="ie=edge">
<link rel="shortcut icon" href="./img/google.svg">
<link rel="stylesheet" href="./css/index.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.1/css/all.css" integrity="sha384-xxzQGERXS00kBmZW/6qxqJPyxW3UR0BPsL4c8ILaIWXva5kFi7TxkIIaMiKtqV1Q" crossorigin="anonymous">
</head>
<body>
<header>
<span><a href="">Gmail</a></span>
<span><a href="">Images</a></span>
<i class="fas fa-th"></i>
<div>
<img src="./img/mary.jpeg" alt="Mary's photo">
</div>
</header>
<main>
<img src="./img/google-logo.png" alt="Google's logo">
<div class="input-area" id="input-area">
<i class="fas fa-search"></i>
<input type="search" name="search" placeholder="Search Google or type a URL">
<i class="fas fa-microphone"></i>
</div>
<button>Google search</button>
<button>I'm feeling lucky</button>
<div class="languages">
<p>Google offered in:</p>
<ul>
<li><a href="">Hausa</a></li>
<li><a href="">Igbo</a></li>
<li><a href="">Èdè Yorùbá</a></li>
<li><a href="">Nigerian Pidgin</a></li>
</ul>
</div>
</main>
<footer>
<div>Nigeria</div>
<ul>
<li><a href="">Advertising</a></li>
<li><a href="">Business</a></li>
<li><a href="">About</a></li>
<li><a href="">How search works</a></li>
<li class="split"><a href="">Privacy</a></li>
<li><a href="">Terms</a></li>
<li><a href="">Settings</a></li>
</ul>
</footer>
</body>
</html>