-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (122 loc) · 4.19 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!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" />
<meta
name="description"
content="Flickr search app | search pictures | gallery | JavaScript | sök bilder | bildgalleri"
/>
<meta
name="keywords"
content="flickr, search app, search pictures, gallery, bildgalleri, sök bilder, front-end, webbutvecklare, utvecklare, programmering, webbdesign, web design, HTML, CSS, JavaScript, Malgorzata Pick"
/>
<meta name="author" content="Malgorzata Pick" />
<link href="css/style.css" rel="stylesheet" />
<script src="js/anime.min.js" defer></script>
<script src="js/app.js" defer></script>
<script src="https://kit.fontawesome.com/3318035e44.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Quantico&family=Roboto&family=Varela+Round&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="img/lens.png" type="image/jpg" sizes="16x16" />
<title>Flickr Search App</title>
</head>
<body>
<main class="column">
<!-- Header -->
<header>
<h1>Flickr Search App</h1>
</header>
<!-- Inputs and buttons-->
<div class="menu">
<div class="inputs">
<input type="text" placeholder="Enter text to search" id="text" />
<div class="row2">
<select name="size" id="size">
<option value="default">Size:</option>
<option value="w">small</option>
<option value="z">medium</option>
<option value="b">large</option>
</select>
<input type="number" placeholder="Quantity" id="quantity" />
</div>
</div>
<div class="buttons">
<button type="input" id="search">Search</button>
<button type="button" id="slide-switch">Slide show</button>
<button type="button" id="reset">Reset</button>
</div>
</div>
<!-- End inputs and buttons -->
<!-- Spinner -->
<div class="spinner-wrapper row">
<div class="spinner-dot dot-one"></div>
<div class="spinner-dot"></div>
<div class="spinner-dot dot-three"></div>
</div>
<!-- End of spinner -->
<!-- Slideshow gallery -->
<div class="slide-show column">
<div class="row">
<button class="slide-btn" id="prev">
<i class="fas fa-backward"></i>
</button>
<button class="slide-btn" id="next">
<i class="fas fa-forward"></i>
</button>
</div>
</div>
<!-- End of slideshow gallery -->
<!-- Gallery -->
<div class="gallery row">
<picture id="lens-pic">
<source srcset="img/lens_192.png" media="(max-width: 420px)" />
<source srcset="img/lens_256.png" media="(max-width: 775px)" />
<img src="img/lens_512.png" alt="lens" id="lens-img" />
</picture>
</div>
<!-- End of gallery -->
<!-- Message Modal -->
<div id="message-modal" class="modal-background">
<!-- Modal content -->
<div class="modal-container">
<div class="modal-header">
<div>
Message.<span class="close" id="error-close" title="Close"
>×</span
>
</div>
</div>
<div class="column">
<p class="message row2" id="error-message"></p>
<div class="row2">
<button
type="submit"
class="message-button"
id="ok-button"
title="OK"
>
OK
</button>
</div>
</div>
</div>
</div>
<!-- End Message Modal -->
</main>
<!-- Footer -->
<footer>
<div class="footer">
<span id="chevron" title="To the top"
><a href="#"><i class="fas fa-chevron-circle-up"></i></a
></span>
<p class="copyright">Copyright © 2021 | Malgorzata Pick</p>
</div>
</footer>
<!-- End footer -->
</body>
</html>