-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (64 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google</title>
<link rel="stylesheet" href="style.css">
</head>
<script>
document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] +
':35729/livereload.js?snipver=1"></' + 'script>')
</script>
<body>
<section>
<header>
<ul>
<li><a href="#">Gmail</a></li>
<li><a href="#">Images</a></li>
<li><a href="#"><img src="bars.png"></a></li>
<li><button>Sing In</button></li>
</ul>
</header>
<div class="main">
<img src="google.png" alt="Google Logo">
<div class="searchBox">
<input type="text" class="search">
<div class="icons">
<div><img src="search.png"></div>
<div><img src="mic.png"></div>
</div>
</div>
<div class="buttons">
<button>Google Search</button>
<button>I'm Feeling Lucky</button>
</div>
<ul class="languages">
<li>Google offered in:</li>
<li><a href="#">English</a></li>
<li><a href="#">magyar</a></li>
<li><a href="#">Deutsch</a></li>
</ul>
<div class="footer">
<div class="row row1">
<p class="country">Romania</p>
</div>
<div class="row row2">
<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>
</ul>
<ul>
<li><a href="#">Privacy</a></li>
<li><a href="#">Terms</a></li>
<li><a href="#">Settings</a></li>
</ul>
</div>
</div>
</div>
</section>
</body>
</html>