-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (36 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div class="main">
<h1>Image Search App</h1>
<form class="search-input">
<input type="text" id="search" placeholder="Type here to search... ">
<button id="search-btn">Search</button>
</form>
</div>
<div class="search-results" id="search-results">
<div class="search">
<img src="https://images.unsplash.com/photo-1534349762230-e0cadf78f5da?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" >
<a href="https://unsplash.com/photos/assorted-wall-decors-7tOV35hnkao" target="_blank">Isn't Life Beautiful</a>
</div>
<div class="search">
<img src="https://images.unsplash.com/photo-1534349762230-e0cadf78f5da?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" >
<a href="https://unsplash.com/photos/assorted-wall-decors-7tOV35hnkao" target="_blank">Isn't Life Beautiful</a>
</div>
<div class="search">
<img src="https://images.unsplash.com/photo-1534349762230-e0cadf78f5da?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" >
<a href="https://unsplash.com/photos/assorted-wall-decors-7tOV35hnkao" target="_blank">Isn't Life Beautiful</a>
</div>
</div>
<div class="showmore">
<button id="show-More">Show More</button>
</div>
<script src="script.js"></script>
</body>
</html>