-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (72 loc) · 4.28 KB
/
Copy pathindex.html
File metadata and controls
103 lines (72 loc) · 4.28 KB
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
<!DOCTYPE html>
<!-- 4. Display the following on the page:
5. Press any key to get started!
6. Wins: (# of times user guessed the word correctly).
* If the word is `madonna`, display it like this when the game starts: `_ _ _ _ _ _ _`.
* As the user guesses the correct letters, reveal them: `m a d o _ _ a`.
7. Number of Guesses Remaining: (# of guesses remaining for the user).
8. Letters Already Guessed: (Letters the user has guessed, displayed like `L Z Y H`).
9. After the user wins/loses the game should automatically choose another word and make the user play it. -->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="./Images/WoodstockIcon.png">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="./css/style.css">
<link href="https://fonts.googleapis.com/css?family=Kalam:300,400,700&display=swap" rel="stylesheet">
<title>Guess The Woodstock Band</title>
</head>
<body>
<!-- page header -->
<div class="container-fluid text-center text-white p-0">
<div class="row no-gutters justify-content-center">
<div class="col-1 d-none d-sm-inline">
<img class="img-fluid" width="100%" height="auto%" src="./Images/woodstock/L1jimi.png" alt="responsive image">
</div>
<div class="col-2 d-none d-sm-inline">
<img class="img-fluid" width="100%" height="auto%" src="./Images/woodstock/L2joni.png" alt="responsive image">
</div>
<div class="col-12 col-sm-6">
<img class="img-fluid" width="100%" height="auto" src="./Images/woodstock/woodstockLoGo0.png" alt="responsive image">
</div>
<div class="col-2 d-none d-sm-inline">
<img class="img-fluid" width="100%" height="auto" src="./Images/woodstock/R2CCR.png" alt="responsive image">
</div>
<div class="col-1 d-none d-sm-inline">
<img class="img-fluid" width="100%" height="auto" src="./Images/woodstock/R1tya.png" alt="responsive image">
</div>
</div>
<div id="prestart" class="row no-gutters justify-content-center banner-text">
<div class="col-12">
<span id="que">Guess Who Played</span>
</div>
</div>
<!-- end of header -->
<!-- center image -->
<div class="row no-gutters justify-content-center">
<div class="col-2 d-none d-sm-inline">
<img class="img-fluid" id="C2" width="100%" height="auto" src="./Images/woodstock/C2couple.png" alt="responsive image">
</div>
</div>
<!-- end of center image -->
<!-- start of gameboard -->
<div style="width: 30px; height: 30px;"><i class="fa fa-arrow-right" style="font-size: 28px;"></i></div>
<div class="row justify-content-center gameboard">
<div class="col-4">
<p id="start">Press any key to get started!</p>
<p id="wins">Wins/Trys: 0 of 0</p>
<p id="band"> <span> - - - - - - </span>  <span> - - - - -</span></p>
<p id="soFar">Your Guesses so Far: </p>
<p id="guessessLeft">Guesses Left: 13</p>
</div>
</div>
<!-- end of gameboard -->
</div>
<!-- end of container -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script src="./javaScript/script.js"></script>
</body>
</html>