-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.68 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
<!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">
<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 image">
<button id="search-button">Search</button>
</form>
<div class="search-results">
<div class="search-result">
<img src="https://images.unsplash.com/photo-1683009427513-28e163402d16?ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=870&q=80" alt="Sunset">
<a href="https://unsplash.com/photos/anozjF6uqI0" target="_blank">Sunset</a>
</div>
<div class="search-result">
<img src="https://images.unsplash.com/photo-1683009427513-28e163402d16?ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=870&q=80" alt="Sunset">
<a href="https://unsplash.com/photos/anozjF6uqI0" target="_blank">Sunset</a>
</div>
<div class="search-result">
<img src="https://images.unsplash.com/photo-1683009427513-28e163402d16?ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=870&q=80" alt="Sunset">
<a href="https://unsplash.com/photos/anozjF6uqI0" target="_blank">Sunset</a>
</div>
</div>
<button id="button">Show more</button>
<!-- <button >Show more</button> -->
</body>
<script src="/javascript.js"></script>
</html>