-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 823 Bytes
/
index.html
File metadata and controls
25 lines (24 loc) · 823 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Boogle</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="navigation">
<!-- Here we need our login stuff in top right -->
<button class="login" onclick="window.location.href='login.html'">Login</button>
</div>
<div class="title">Boogle</div>
<div class="container">
<div class="search">
<input class="searchbar" type="text" value="Search anything...">
</div>
<div class="submits">
<input class="submitbtn" type="submit" value="Search Google">
<input class="submitbtn" type="submit" value="Guessing...">
<input class="submitbtn" type="submit" value="Some test...">
</div>
</div>
</body>
</html>