-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (28 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/imageIcon.png" type="image/x-icon">
<title>Image Serach App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Image Search App</h1>
<form action="" id="searchForm">
<input type="text" name="" id="searchBox" placeholder="Serach for images">
<button id="SearchButton">Search</button>
</form>
<div id="searchResults">
<!-- <img src="https://images.unsplash.com/photo-1689126437563-f5d936a06713?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxlZGl0b3JpYWwtZmVlZHw5fHx8ZW58MHx8fHx8&auto=format&fit=crop&w=400&q=60"
alt="parrot pics">
<a href="https://unsplash.com/photos/a-close-up-of-a-parrot-with-a-black-background-az2lhaX0s7g"
target="_blank">Parrot Pic</a> -->
</div>
<button id="showMoreBtn">Show More</button>
</div>
<script type="module" src="app.js"></script>
<!-- axios library link unpkg cdn -->
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
</body>
</html>