-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (86 loc) · 4.49 KB
/
index.html
File metadata and controls
121 lines (86 loc) · 4.49 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
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
<!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">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Flickr Photo Search | Home</title>
</head>
<body>
<section class="overlay hide" onclick="clickOnImage()"></section>
<header>
<nav class="headernav">
<div class="links">
<a href="index.html"><img class="headlogo" src="img/text-1620836416518.png" alt="flickr logo" width="290"></a>
<a href="#">You</a>
<a href="#">Explore</a>
<a href="#">Get Pro</a>
<a class ="getproyo" href="#">About</a>
<input id="searchtwo" type="text" name="search" placeholder="Enter text to search...." required>
<button class="search" name="search" onclick="getSearchedImages();"><ion-icon name="search"></ion-icon></button>
<img class ="cloud" src="/img/640px-ICloud_logo.svg.png" alt="cloud logo">
<img class="bell" src="/img/new1280098.png" alt="Bell logo">
<img class="user" src="img/1070633.png" alt="">
</div>
<a class ="upgradenow" href="#">Upgrade to pro now to hide ads!</a>
</nav>
<section class="dropdown">
<select class="tags">
<option class ="notags" value="-notthisone">No tags</option>
<option value="tags">Tags</option>
</select>
<select class="Sortby">
<option value="relevance">Sort by relevancy</option>
<option value="date-posted-asc">Sort by date-posted-ascending order</option>
<option value="date-posted-desc">Sort by date-posted-descending order</option>
</select>
<select class="page">
<option value="50">Show 50 pictures(PC)</option>
<option value="25">Show 25 pictures(PC)</option>
<option value="10">Show 10 pictures(PC)</option>
</select>
<select class="mobilepage">
<option value="50">Show 50 pictures(Phone)</option>
<option value="25">Show 25 pictures(Phone)</option>
<option value="10">Show 10 pictures(Phone)</option>
</select>
</section>
</header>
<main>
</main>
<section class="nextprevbottom">
<button class="prev" title="Prev Page" onclick="getPreviousImages()"><ion-icon name="arrow-round-back"></ion-icon></i></button>
<div class="article">
<p id="pages"></p>
</div>
<button class="next" title="Next Page" onclick="getNextImages()"><ion-icon name="arrow-round-forward"></ion-icon></i></button>
</section>
<footer class="mainfooter">
<article>
<img class="headlogo" src="img/text-1620836416518.png" alt="lower logo" width="200">
<br><br>
<hr>
<p class="mainfooterpara">Photo Gallery is a selfmade clientapp where you can search and <br> view pictures nicely with the help and usage of the Flickr Api. <br>With the help of
arguments and methods the website has <br> functionality that helps you easily browse through the gallery<br> sorted by relevance, tags, no tags, <br>how many images to display on the pages
and more </p>
</article>
<article class="vector">
<h3><u>Contact</u></h3>
<img class ="testimg" src="img/call.png" alt="" width="40"> <span>+0345-345235</span>
<br>
<img class ="testimg" src="img/mail.png" alt="" width="40"><span class="mailimgspan">info.github.io.photogallery@gmail.com</span>
</article>
</footer>
<footer class="lowerfooter">
<p>
© Albinahmetaj.github.io | Designed by Albin Ahmetaj
</p>
</footer>
<script src="main.js"></script>
<script type="module" src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule="" src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons/ionicons.js"></script>
</body>
</html>