-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (47 loc) · 3.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Image Search App</title>
</head>
<body>
<h1>Image Search App</h1>
<!-- Form Section -------------------------------------------------------------------->
<form action="">
<input type="text" id="search-input" placeholder="Search for images">
<button id="search-button" type="submit">Search</button>
</form>
<!-- Templates Section ---------------------------------------------------------------->
<div class="search-results">
<div class="search-result">
<img src="https://images.unsplash.com/photo-1482066490729-6f26115b60dc?q=80&w=2014&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="sleeping cat" >
<a href="https://unsplash.com/photos/brown-and-white-cat-on-white-textile-_STvosrG-pw" target="_blank">sleeping cat</a>
</div>
<div class="search-result">
<img src="https://images.unsplash.com/photo-1510784722466-f2aa9c52fff6?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Sunset" >
<a href="https://unsplash.com/photos/silhouette-of-plant-during-sunset-xg8z_KhSorQ" target="_blank">Sunset</a>
</div>
<div class="search-result">
<img src="https://images.unsplash.com/flagged/photo-1553505192-acca7d4509be?q=80&w=1790&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="BMW Car" >
<a href="https://unsplash.com/photos/blue-bmw-coupe-parked-on-the-road-during-daytime-1BWBiUUT-AA" target="_blank">BMW Car</a>
</div>
<div class="search-result">
<img src="https://images.unsplash.com/photo-1600158362217-37e9db30b17a?q=80&w=1888&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Lion" >
<a href="https://unsplash.com/photos/lion-lying-on-brown-grass-during-daytime-5kbFvsYe4K4" target="_blank">Lion</a>
</div>
<div class="search-result">
<img src="https://images.unsplash.com/photo-1577221084712-45b0445d2b00?q=80&w=1898&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Muscle Man" >
<a href="https://unsplash.com/photos/man-in-gray-hoodie-xXofYCc3hqc" target="_blank">Muscle Man</a>
</div>
<div class="search-result">
<img src="https://images.unsplash.com/photo-1568605114967-8130f3a36994?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="House" >
<a href="https://unsplash.com/photos/brown-and-black-wooden-house-TiVPTYCG_3E" target="_blank">House</a>
</div>
</div>
<!-- Show More Button ---------------------------------------------------------------->
<button id="show-more-button">Show more</button>
</body>
<script src="script.js"></script>
</html>