-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (37 loc) · 1.33 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
46
47
48
49
50
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Psychic Game</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="assets/images/favicon.png">
<link rel="stylesheet" type="text/css" href="assets/css/reset.css" />
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
</head>
<body>
<div class="wrapper text-background">
<h1>Are You Psychic?</h1>
<h2>I'm thinking of a letter...</h2>
<h3>You have 7 tries to guess the letter I'm thinking of. </h3>
<h4>Select a letter key from A to Z to play!</h4>
<br><br>
<!-- access to JS -->
<p id="number-text"></p>
<p id="letters-text"></p>
<p id="wins-text"></p>
<p id="losses-text"></p>
</article>
</div>
<!-- FOOTER -->
<footer class="sticky-footer">
<p class=" footer-style">
<strong>Kaylah Malillos - Psychic Game</strong> <br>
<a href="https://github.com/kmalillos/psychic-game" target="_blank">GitHub Repo</a>
|
<a href="https://kmalillos.github.io/" target="_blank">Portfolio</a>
</p>
</footer>
<!-- JAVASCRIPT -->
<script type="text/javascript" src="assets/javascript/game.js"></script>
</body>
</html>