-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (40 loc) · 1.91 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
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<title>Backronym: Generate Mnemonic Devices</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Generate mnemonic devices to help memorize words.">
<meta name="keywords" content="backronym, acronym, acronyms, mnemonic, mnemonics, memory, memorize, abbreviation, study, studying">
<meta name="author" content="Ben Gaudiosi">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="script/main.js"></script>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
<link rel = "stylesheet" type = "text/css" href = "stylesheet.css" />
</head>
<body>
<div class="container">
<div class="intro">
<h1 class="logo">Backronym</h1>
<h3>Type something to turn into a backronym and press enter.</h3>
<input type="text" maxlength="9" class="user-input" onkeypress="handleKeyPress(event)">
</div>
<div class="content">
</div>
<div class="push"></div>
</div>
<div class="footer">
<!--
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.8";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script> -->
<p>(c) 2017 Ben Gaudiosi</p>
<!-- <div class="fb-share-button" data-href="https://bgaudiosi.github.io/backronym/" data-layout="button" data-size="small" data-mobile-iframe="true"><a class="fb-xfbml-parse-ignore" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fbgaudiosi.github.io%2Fbackronym%2F&src=sdkpreparse">Share</a></div> -->
</div>
</body>
</html>