-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimages.html
More file actions
94 lines (94 loc) · 3.36 KB
/
images.html
File metadata and controls
94 lines (94 loc) · 3.36 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
<!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 Images</title>
<link rel="icon" type="image/svg+xml" href="./assets/icons8-google.svg" />
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<nav class="nav__bar">
<ul class="nav__links">
<li class="nav__link">
<a href="./index.html" class="nav__link--anchor">Search</a>
</li>
<li class="nav__link">
<figure class="icon__wrapper">
<img src="./assets/icons8-apps-24.png" alt="Google Apps" class="icon">
</figure>
</li>
<li class="nav__link">
<figure class="icon__wrapper">
<img src="./assets/icons8-person-24.png" alt="Google Account" class="icon">
</figure>
</li>
</ul>
</nav>
<main>
<div class="container">
<div class="row">
<figure class="img__wrapper">
<img src="./assets/Google-logo.png" alt="Google Logo" class="img">
<span class="sub__img">images</span>
</figure>
<form method="GET" class="input__form" action="https://google.com/images">
<div class="input__form--elements">
<figure class="icon__wrapper">
<img src="./assets/icons8-search-16.png" alt="Search Icon" class="icon">
</figure>
<input class="input__form--field" type="text" name="q" autocomplete="off">
<figure class="icon__wrapper">
<img src="./assets/icons8-camera-16.png" alt="Camera Icon" class="icon">
</figure>
<figure class="icon__wrapper">
<img src="./assets/google-mic-icon.png" alt="Speech Icon" class="icon">
</figure>
<figure class="icon__wrapper">
<img src="./assets/icons8-search-16.png" alt="Search Icon" class="icon icon__special">
</figure>
</div>
</form>
</div>
</div>
</main>
<footer>
<div class="container">
<div class="row">
<span id="country__wrapper">
<h6 id="country">Egypt</h6>
</span>
<hr>
<div class="footer__links--grp">
<ul class="footer__links">
<li class="footer__link footer__link--left">
<a href="" class="footer__link--anchor">About</a>
</li>
<li class="footer__link footer__link--left">
<a href="" class="footer__link--anchor">Advertising</a>
</li>
<li class="footer__link footer__link--left">
<a href="" class="footer__link--anchor">Business</a>
</li>
<li class="footer__link footer__link--left">
<a href="" class="footer__link--anchor">How Search Works</a>
</li>
</ul>
<ul class="footer__links">
<li class="footer__link footer__link--right">
<a href="" class="footer__link--anchor">Privacy</a>
</li>
<li class="footer__link footer__link--right">
<a href="" class="footer__link--anchor">Terms</a>
</li>
<li class="footer__link footer__link--right">
<a href="" class="footer__link--anchor">Settings</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
</body>
</html>