-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (72 loc) · 3.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> Goggle search</title>
<!--Favicon-->
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/png" sizes="192x192" href="images/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="images/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!--Link Preview-->
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.noahnash.me/google-homepage">
<meta property="og:title" content="Mockup Google replica">
<meta property="og:description" content="Recreation of Google homepage">
<meta property="og:image" content="https://www.noahnash.me/google-homepage/images/logo.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://www.noahnash.me">
<meta property="twitter:title" content="Mockup Google replica>
<meta property="twitter:description" content="Recreation of Google homepage">
<meta property="twitter:image" content="https://www.noahnash.me/google-homepage/images/logo.png">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="left-header">
<a href="#">About</a>
<a style="padding-left: 8px;" href="#">Store</a>
</div>
<div class="right-header">
<a href="#">Gmail</a>
<a href="#">Images</a>
<a id="app-icon" href="#"><img src="images/grid-icon.png" alt="app icon"></a>
<a class="sign-in" href="#"><button id="sign-in">Sign in</button></a>
</div>
</header>
<main>
<img src="images/logo.png" alt="Google" id="google-logo" width="272">
<div>
<form action=# class=search>
<div class=searchbar>
<span id=search-icon>
<img width="15px" src="images/search-icon.png" alt="">
</span>
<input type=text class=search-input value>
</div>
<div class="search-buttons-row">
<a href=# class=search-buttons>Google Search</a>
<a href=# class=search-buttons>I'm Feeling Lucky</a>
</div>
</form>
</div>
</main>
<footer class="footer">
<div>
<a href=#>Advertising</a>
<a href=#>Business</a>
<a href=#>How Search works</a>
</div>
<div>
<a href=#>Privacy</a>
<a href=#>Terms</a>
<a style="padding-right: 20px;" href=#>Settings</a>
</div>
</footer>
</html>