-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
34 lines (34 loc) · 1.37 KB
/
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
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>Flashpoint Database</title>
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="main.css">
<script defer src="home.js"></script>
</head>
<body>
<div class="navbar">
<a href="./" class="navbar-logo">
<img src="logo.svg" height="100%">
<span>Flashpoint Database</span>
</a>
<a href="search">Search</a>
<a href="statistics">Statistics</a>
<a href="https://github.com/FlashpointProject/flashpoint-database" class="navbar-right">Source Code</a>
<a href="https://bluemaxima.org/flashpoint">Back to Home</a>
</div>
<div class="content">
<div class="home-header">
<img src="logo.svg" height="100%" class="home-logo">
<div class="home-text">
<div class="home-title">Flashpoint Database</div>
<div class="home-subtitle">Search <b class="home-games"></b> games and <b class="home-animations"></b> animations</div>
</div>
</div>
<div class="home-search">
<input class="home-search-input" placeholder="Enter search term..." autofocus>
<button class="home-search-button">Search</button>
</div>
</div>
</body>
</html>