-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle-search-easy.html
55 lines (55 loc) · 2.04 KB
/
google-search-easy.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="Full Stack Developer project Odin practicing search page example">
<meta name="keywords" content="HTML, CSS, JavaScript, theodinproject">
<meta name="author" content="Saturno Mangieri @theghost1980-github">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<div id="mainwrap">
<nav id="top-bar">
<p><a href="">Gmail</a></p>
<p><a href="">Images</a></p>
<a href="">
<div id="frame-path">
<img src="media-images/path.svg" id="path">
</div>
</a>
<a href="">
<div id="frame-path2">
<img src="media-images/heisenberg.png" id="path2">
</div>
</a>
</nav>
<main id="content">
<img src="media-images/googlelogo_color_272x92dp.png" id="logo">
<div id="search-c">
<input type="text" id="search-box" autofocus placeholder="Type Here To Search">
</div>
<div id="button-container">
<button class="butt">Search</button>
<button class="butt">I'm feeling lucky</button>
</div>
<p id="line">Offered by Google in: <a href="">English</a></p>
</main>
<footer>
<div><p class="footext">Venezuela</p></div>
<div id="flex-bottom">
<div class="f-left">
<a href=""><p>Advertising</p></a>
<a href=""><p>Bussines</p></a>
<a href=""><p>About Google</p></a>
</div>
<div class="f-right">
<p><a href="">Privacy</a></p>
<p><a href="">Conditions</a></p>
<p><a href="">Preferences</a></p>
</div>
</div>
</footer>
</div>
</body>
</html>