-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 856 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Search Engine</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="text-center my-5">Image Search Engine</h1>
<div class="d-flex justify-content-center">
<input type="text" class="form-control w-auto">
<button class="btn btn-warning ms-1 ms-sm-2">Search</button>
</div>
<div class="container">
<div class="row">
<div class="col result mt-5"></div>
</div>
</div>
<button class="btn btn-warning align-self-center mt-5 show-more">Show More</button>
</body>
<script src="app.js"></script>
</html>