-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image search</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Image Search App</h1>
<form action="">
<input type="text" id="search-input" placeholder="Search for images">
<button id="search-button">Search</button>
</form>
<div class="search-result">
<div class="search-results">
<img src="https://images.unsplash.com/photo-1682685795463-0674c065f315?ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxlZGl0b3JpYWwtZmVlZHw2fHx8ZW58MHx8fHx8&auto=format&fit=crop&w=1000&q=60" alt="Dark night">
<a href="https://unsplash.com/photos/yg6v0KoiIcU" target="_blank">Dark Night</a>
</div>
<div class="search-results">
<img src="https://images.unsplash.com/photo-1682685795463-0674c065f315?ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxlZGl0b3JpYWwtZmVlZHw2fHx8ZW58MHx8fHx8&auto=format&fit=crop&w=1000&q=60" alt="Dark night">
<a href="https://unsplash.com/photos/yg6v0KoiIcU" target="_blank">Dark Night</a>
</div>
<div class="search-results">
<img src="https://images.unsplash.com/photo-1682685795463-0674c065f315?ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxlZGl0b3JpYWwtZmVlZHw2fHx8ZW58MHx8fHx8&auto=format&fit=crop&w=1000&q=60" alt="Dark night">
<a href="https://unsplash.com/photos/yg6v0KoiIcU" target="_blank">Dark Night</a>
</div>
</div>
<button id="show-more-btn">Show more</button>
<script src="script.js"></script>
</body>
</html>