-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
20 lines (20 loc) · 940 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="icon" type="image/x-icon" href="public/images/search_icon.png">
<link rel="stylesheet" href="public/css/styles.css">
</head>
<body>
<div class="container mt-5 align-items-center text-center search">
<h1 class="display-1">Search</h1>
<form>
<input type="text" placeholder="Search the web" class="active search_bar d-block">
<button class="btn-dark submit">Search</button>
</form>
</div>
</body>
</html>