-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (50 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--google icons link-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Google UI clone</title>
</head>
<body>
<!-- header -->
<div class="header">
<div class="header__left">
<a href="#"> About </a>
<a href="#"> Store </a>
</div>
<div class="header__right">
<a href="#"> Gmail </a>
<a href="#"> Images </a>
<span class="material-icons header__apps">
apps
</span>
<span class="material-icons">
account_circle
</span>
</div>
</div>
<!--main body-->
<div class="mainBody">
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Google logo">
</div>
<!--search-->
<div class="search">
<div class="search__input">
<span class="material-icons">
search
</span>
<input type="text" />
<span class="material-icons">
mic
</span>
</div>
<div class="search__buttons">
<button>Google Search</button>
<button>I'm feeling lucky</button>
</div>
</div>
</body>
</html>