-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 2 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
35
36
37
<!doctype html>
<html>
<head>
<title>FFRK Lookup</title>
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script src='scripts/easy-autocomplete.min.js'></script>
<script type="module" src="scripts/popup.js"></script>
<link rel='stylesheet' href='css/easy-autocomplete.min.css'>
<link rel="stylesheet" type="text/css" href="css/ffrk.css">
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body id="body">
<div class='banner'>
<div class='link-container container'>
<img src="images/tyro-32.png" alt="FFRK Lookup">
<a class='banner__link' href="index.html">Home</a>
<a class='banner__link' href="tutorial.html">Tutorial</a>
<a class='banner__link' href="https://www.paypal.me/kramerajeffrey" target='_blank'>Donate</a>
<a class='banner__link hidden' href="about.html">About</a>
</div>
</div>
<div class="content container">
<div class="title-container">
<h1 id="title" class="title">FFRK Lookup</h1>
<a href="https://www.reddit.com/r/FFRecordKeeper/" class="social-link" target='_blank'><img src="images/reddit.svg" class="social" alt="FFRK Subreddit" title="FFRK Subreddit"/></a>
<a href="https://discord.gg/Fv7E7Ve#%22community%22#title#faq" class="social-link" target='_blank'><img src="images/discord.svg" class="social" alt="FFRK Discord" title="FFRK Discord"/></a>
</div>
<form id="search-form" action="">
<input id="search-text" type="text" placeholder="What are you looking for?">
<input id="search-button" type="submit" value="Search">
</form>
<p class='bug'>Found a bug? <a href="mailto:ffrklookup@gmail.com" target='_blank'>Contact me</a></p>
<div id="results"></div>
</div>
</body>
</html>