-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (48 loc) · 1.88 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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Photo Adda</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1><a href="/">Image Search App</a></h1>
<form>
<input id="search-input" type="text" placeholder="Search image..." autocomplete="off"/>
<button id="search-button">Search</button>
</form>
<div class="search-result">
<div class="result">
<img
src="https://images.unsplash.com/photo-1683009427692-8a28348b0965?ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=870&q=80"
alt="Mountain under the Sky"
/>
<a href="https://unsplash.com/photos/qGH25zv5xMk" target="_blank"
>Mountain under the sky</a
>
</div>
<div class="result">
<img
src="https://images.unsplash.com/photo-1661956601030-fdfb9c7e9e2f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=442&q=80"
alt="Mountain under the Sky"
/>
<a href="https://unsplash.com/photos/qGH25zv5xMk" target="_blank"
>laptop on table</a
>
</div>
<div class="result">
<img
src="https://images.unsplash.com/photo-1687175452114-3a4fc0664df3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=870&q=80"
alt="Mountain under the Sky"
/>
<a href="https://unsplash.com/photos/qGH25zv5xMk" target="_blank"
>Sunset with cloud</a
>
</div>
</div>
<button id="show-more">Show More</button>
<script src="script.js"></script>
</body>
</html>