-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path23.html
More file actions
31 lines (29 loc) · 1.15 KB
/
Copy path23.html
File metadata and controls
31 lines (29 loc) · 1.15 KB
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
<!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>
</head>
<body>
<h1>Image Search App</h1>
<input type="text" id="searchInput" placeholder="Search for images">
<button onclick="searchImages()">Search</button>
<div id="imageContainer"></div>
<script>
async function searchImages() {
const searchQuery = document.getElementById('searchInput').value;
const response = await fetch(`https://api.unsplash.com/search/photos?query=${searchQuery}&client_id=u4jRDviBVYB_8p-HSmvz8YGJ4PGirPPHy9VOm5xejOw`);
const data = await response.json();
const imageContainer = document.getElementById('imageContainer');
imageContainer.innerHTML = '';
data.results.forEach(result => {
const imgElement = document.createElement('img');
imgElement.src = result.urls.regular;
imgElement.alt = result.alt_description;
imageContainer.appendChild(imgElement);
});
}
</script>
</body>
</html>