-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (37 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Search App</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-results">
<div class="search-result">
<img src="https://images.unsplash.com/photo-1704402864101-1185cc83f92c?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Two beautiful Puppies">
<a href="https://unsplash.com/photos/two-dogs-sitting-next-to-each-other-on-a-blue-background-SHKKHRdROiY" target="_blank">Two beautiful puppies</a>
</div>
<div class="search-result">
<img src="https://images.unsplash.com/photo-1704402864101-1185cc83f92c?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Two beautiful Puppies">
<a href="https://unsplash.com/photos/two-dogs-sitting-next-to-each-other-on-a-blue-background-SHKKHRdROiY" target="_blank">Two beautiful puppies</a>
</div>
<div class="search-result">
<img src="https://images.unsplash.com/photo-1704402864101-1185cc83f92c?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="Two beautiful Puppies">
<a href="https://unsplash.com/photos/two-dogs-sitting-next-to-each-other-on-a-blue-background-SHKKHRdROiY" target="_blank">Two beautiful puppies</a>
</div>
</div>
<button id="more-button">
Show More
</button>
<!--
<h3>Improve on <a href="github.com/kamranzafar4343/">Github</a></h3> -->
<!--i was getting errors for using it on the top of body but solved when used at last<script> -->
<script src="script.js"></script>
</body>
</html>