-
Notifications
You must be signed in to change notification settings - Fork 0
/
imageSearchApp.html
45 lines (34 loc) · 1.88 KB
/
imageSearchApp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>myFirstWebapp</title>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<h1> IMAGE SEARCH APP</h1>
<form action="">
<input type="text" id="search-input" placeholder = "search for images">
<button id="search-button" type="submit"> search </button>
</form>
<div class="search-results">
<div class="search-result">
<img src="https://images.unsplash.com/photo-1526057565006-20beab8dd2ed?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1887&q=80" alt=" business">
<a href= "https://unsplash.com/photos/m7r1BVoWTAk" target="_blank" alt=" business" > interior</a>
</div>
<div class="search-result">
<img src="https://images.unsplash.com/photo-1609761973820-17fe079a78dc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt=" business">
<a href="https://unsplash.com/photos/B-rJSDRNxYw" target="_blank" alt=" business">business </a>
</div>
<div class="search-result">
<img src="https://images.unsplash.com/photo-1609761973820-17fe079a78dc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt=" business">
<a href="https://unsplash.com/photos/B-rJSDRNxYw" target="_blank" alt=" business"></a>
</div>
</div>
<button id="show-more-button"> show More</button>
<script src ="script.js"></script>
</body>
</html>