-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimg-search.html
43 lines (36 loc) · 1.49 KB
/
img-search.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
<title>Image Search</title>
<style>
* {box-sizing: border-box;}
body {
min-height: 100vh;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;}
</style>
</head>
<body class="bg-black m-0 p-0 text-white">
<div class="parent w-100 h-100">
<h1 class="text-center mt-5">Image Search App</h1>
<div class="container m-auto">
<form action="/action_page.php">
<div class="m-auto mt-5 d-flex justify-content-center">
<input style="width: 300px;" type="search" class="form-control rounded" id="search"
placeholder="Search..." name="search">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</form>
</div>
</div>
<div class="container m-auto mt-5 row d-flex justify-content-center results">
</div>
<div class="container d-flex justify-content-center" style="margin-top: 100px;">
<button class="btn btn-primary d-none show-more">Show More</button>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="img-search.js"></script>
</body>
</html>