-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) Β· 2.01 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">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<h1>Image Search <span>App </span></h1>
<form action="">
<input type="text" id="search-input" placeholder="Search for images">
<button id="search-button">Search</button>
</form>
<div class="search-results">
<div class="search-result">
<img src="https://images.unsplash.com/photo-1682685796186-1bb4a5655653?w=1000&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxlZGl0b3JpYWwtZmVlZHwxNnx8fGVufDB8fHx8fA%3D%3D" alt="Mountains under the sky">
<a href="https://unsplash.com/photos/a-man-climbing-up-the-side-of-a-mountain-85ey1vFIwkc" target="_blank">Mountains under the sky</a>
</div>
<div class="search-result">
<img src="https://images.unsplash.com/photo-1701941258075-ae093a5f0185?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="View of mountain range in dessert">
<a href="https://unsplash.com/photos/a-black-porsche-cayen-is-parked-in-the-snow-JLzw7o7t6Wk" target="_blank">a black porsche cayen is parked in the snow</a>
</div>
<div class="search-result">
<img src="https://images.unsplash.com/photo-1682686581551-867e0b208bd1?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Mountains under the sky">
<a href="https://unsplash.com/photos/a-person-in-a-diving-suit-and-goggles-swims-over-a-coral-reef-DnF5nG4Fk4c" target="_blank">A person in a diving suit and goggles swims over a coral reef</a>
</div>
</div>
<button id="show-more-btn">Show More</button>
<script src="script.js"></script>
</body>
</html>