-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (44 loc) · 1.64 KB
/
index.html
File metadata and controls
47 lines (44 loc) · 1.64 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="picture searchengine pixabay">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PixaBayImageSearch</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 id="heading"><span id="word1">Pixabay </span><span id="word2">Image </span><span id="word3">Search</span>
</h1>
<form id="search-form">
<label for="search-term"></label>
<input type="text" id="search-term" name="search-term" placeholder="Search...">
<select name="colors" id="colors">
<option value="any-color">Any Color</option>
<option value="black">Black</option>
<option value="blue">Blue</option>
<option value="brown">Brown</option>
<option value="green">Green</option>
<option value="orange">Orange</option>
<option value="pink">Pink</option>
<option value="purple">Purple</option>
<option value="red">Red</option>
<option value="white">White</option>
<option value="yellow">Yellow</option>
</select>
<button id="Go" type="submit">Go</button>
</form>
</header>
<main>
<div id="image-container"></div>
</main>
<footer>
<div id="turn-page">
<button id="previous-page">Previous Page</button>
<button id="next-page">Next Page</button>
</div>
</footer>
<script src="main.js" defer></script>
</body>
</html>