-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 1022 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Unsplash Image Search App</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Image Search App</h1>
<form id="search-form">
<input type="text" id="search-input" placeholder="Search for images..." />
<button type="submit" id="search-button">Search</button>
</form>
<div id="search-results">
<!-- <div class="search-result">
<img
src="https://images.unsplash.com/photo-1503696967350-ad1874122058?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=Mnw0MTc4MDN8MHwxfHNlYXJjaHwxfHxuaWNlfGVufDB8fHx8MTY3NzgxOTYwMg&ixlib=rb-4.0.3&q=80&w=400"
alt="beach near road at daytime"
/><a href="https://unsplash.com/photos/mpVZVCClgac" target="_blank"
>beach near road at daytime</a
>
</div> -->
</div>
<button id="show-more-button">Show More</button>
<script src="app.js"></script>
</body>
</html>