added meta data & required both js files.
This commit is contained in:
parent
a08aee1e0a
commit
7adcb7c9f3
11
index.html
11
index.html
@ -2,11 +2,18 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Tarot</title>
|
|
||||||
<link rel="stylesheet" href="stylesheet.css" />
|
<link rel="stylesheet" href="stylesheet.css" />
|
||||||
<!--JQuery script tag has to come before the JS otherwise it won't run.-->
|
<!--JQuery script tag has to come before the JS otherwise it won't run.-->
|
||||||
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
|
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
|
||||||
<script src="main.js"></script>
|
<script src="deal.js"></script>
|
||||||
|
<script src="deck.js"></script>
|
||||||
|
<!--meta shit-->
|
||||||
|
<title>Tarot Project By Patricia Realini</title>
|
||||||
|
<!--favicon in href... after "image" type in either "/ico" or "/png"-->
|
||||||
|
<link rel="icon" type="image/png" href="images/favicon.png">
|
||||||
|
<meta name="description" content="Tarot card readings, courtesy of JavaScript.">
|
||||||
|
<meta name="keywords" content="tarot, javascript">
|
||||||
|
<meta name="author" content="Patricia Realini">
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user