generated from alissatroiano/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
104 lines (96 loc) · 5.01 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Bootstrap CDN-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!--Load FontAwesome CDN-->
<script src="https://kit.fontawesome.com/5cf6f031a9.js" crossorigin="anonymous"></script>
<!--Import Futura from Adobe Fonts-->
<link rel="stylesheet" href="https://use.typekit.net/hdw8ydb.css">
<!--Load Custom CSS Stylesheet-->
<link rel="stylesheet" href="assets/css/style.css">
<!--Insert Favicon-->
<link rel="shortcut icon" type="image/ico" href="assets/images/favicon.png" />
<!-- Tag for description -->
<meta name="description" content="Home page of Smitten and word guessing game">
<title>8-Your-Heart-Out</title>
</head>
<body class="position-relative">
<!-- header -->
<header class="container-fluid">
<div class="container">
<div class="row align-items-center">
<div class="col text-left question">
<p>
<button type="button" class="btn btn-help shadow-none" data-bs-toggle="modal" data-bs-target="#staticBackdrop" aria-label="button for reading the rules">
<i class="fa-solid fa-question"></i>
</button>
</p>
</div>
<div class="col text-center">
<h1><span class="diff-letter">S</span>mitten</h1>
</div>
<div class="col text-end">
<a id="btn-game-left" href="#game" class="custom-button" aria-label="link to game page"><i class="fa-solid fa-gamepad" aria-hidden="true"></i></a>
<a id="btn-game-right" href="developer-page.html" class="custom-button" aria-label="link to developer team page"><i class="fa-solid fa-keyboard" aria-hidden="true"></i></a>
</div>
</div>
</div>
</header>
<!-- end header -->
<!-- Game logic learned from https://www.youtube.com/watch?v=mpby4HiElek and customized by the development team-->
<main id="game" class="container mn-container">
<div class="game-container">
<div class="message-container center-output">
</div>
<div class="tile-container"></div>
<div class="key-container"></div>
</div>
</main>
<!-- footer -->
<footer class="container-fluid">
<div class="row">
<div class="col-12 fixed-bottom info-footer">© 2022 8-Your-Heart-Out. <strong> All
Rights Reserved</strong></div>
</div>
</footer>
<div class="modal fade" id="staticBackdrop" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header text-center">
<h5 class="modal-title" id="staticBackdropLabel"><span class="diff-letter">S</span>mitten</h5>
</div>
<div class="modal-body">
<p class="modal-text">
Guess the word in <span class="bold">SIX TRIES</span> or less to win <span class="bold">SMITTEN!</span>
</p>
<p class="modal-text">
<span class="bold">NOTE:</span> All of the words in our word bank are five-letter words related to Valentine's Day and LOVE.
</p>
<p class="modal-examples"> EXAMPLES </p>
<p class="modal-examples">
M<span class="not-word">A</span>RRY <span class="bold"> - "A" is not in the word at all.</span>
</p>
<p class="modal-examples">
LO<span class="in-word">V</span>ER <span class="bold">- "V" is in the word, but in a different spot</span>
</p>
<p class="modal-examples">
HIT<span class="in-place">C</span>H <span class="bold"> - "C" is in word AND the spot you guessed!</span>
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal" aria-label="button for starting the game">I'm Ready To Play!</button>
</div>
</div>
</div>
</div>
<!-- script for js -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
<script src="assets/js/script.js"></script>
</body>
</html>