-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (35 loc) · 2.12 KB
/
index.html
File metadata and controls
50 lines (35 loc) · 2.12 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SearchImage</title>
<link rel="stylesheet" href="css/imagestl.css">
</head>
<body>
<h1>Image Search Generator</h1>
<form action="">
<input type="text" placeholder="Search for image" id="search-input">
<button id="search-btn">Search</button>
</form>
<div class="search-results">
<div class="search-result">
<img src="https://images.unsplash.com/photo-1682687981630-cefe9cd73072?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
alt="Home to kaleidoscopic-colored coral reefs and an abundance of diverse marine life | Islands of NEOM- NEOM, Saudi Arabia.">
<a href="https://unsplash.com/photos/a-woman-scubas-over-a-colorful-coral-reef-jTxhUMyPTrE" target="_blank">Lady in the sea</a>
</div>
<div class="search-result">
<img src="https://images.unsplash.com/photo-1682687220208-22d7a2543e88?q=80&w=1975&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
alt="Home to kaleidoscopic-colored coral reefs and an abundance of diverse marine life | Islands of NEOM- NEOM, Saudi Arabia.">
<a href="https://unsplash.com/photos/an-aerial-view-of-a-desert-with-rocks-and-sand-XDtzu1D2P8c" target="_blank">Sandstone plateau Saudi Arabia</a>
</div>
<div class="search-result">
<img src="https://images.unsplash.com/photo-1621478374422-35206faeddfb?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
alt="Luffy From One_Piece">
<a href="https://unsplash.com/photos/woman-in-yellow-dress-figurine-uCqpNqdA-5U" target="_blank">Luffy From One Piece</a>
</div>
</div>
<button id="show-more-button">Show More</button>
<script src="js/imagegen.js"></script>
</body>
</html>