1
mirror of https://github.com/jakejarvis/synonyms-for-awesome.git synced 2026-01-14 08:02:55 -05:00

static JS instead of insanely unnecessary PHP

This commit is contained in:
2018-03-25 11:32:49 -04:00
parent 50f2aad8d1
commit 0e45ed48bb
5 changed files with 237 additions and 90 deletions

31
index.html Normal file
View File

@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>synonyms for awesome</title>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:600">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="awesome.css">
<link rel="shortcut icon" href="favicon.ico">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="awesome.js"></script>
</head>
<body>
<div id="container">
<span id="synonym"></span>
</div>
<div id="footer">
<a href="https://scrabble.io" target="_blank" rel="noopener noreferrer nofollow"><img src="s.png"><span>made with &hearts; by scrabble</span></a>
</div>
<script>
window.ga=function(){ga.q.push(arguments)};ga.q=[];ga.l=+new Date;
ga('create','UA-1563964-40','auto');
ga('send','pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async defer></script>
</body>
</html>