-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenge02_part2.html
76 lines (71 loc) · 2.66 KB
/
challenge02_part2.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
<!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">
<!-- CSS -->
<link rel="stylesheet" href="../WDD330/css/Challenge02/challenge02_part2.css" />
<!-- ICONS -->
<link href="https://unpkg.com/[email protected]/css/boxicons.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" />
<title>Challenge 02: JavaScript Game</title>
</head>
<body>
<!-- Top Navigation Menu -->
<div class="top-nav">
<a href="../WDD330/challenge02.html" class="active">Challenge 02 Project</a>
<!-- Navigation links (hidden by default) -->
<div id="myLinks">
<a href="../WDD330/challenge02.html">GeoAPI</a>
<a href="../WDD330/challenge02_part2.html">JS Game</a>
</div>
<!-- "Hamburger menu" / "Bar icon" to toggle the navigation links -->
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<!-- JS Game -->
<div class="game-container">
<div class="description-rules">
<h1>JavaScript Game</h1>
<h3>Click any card to begin</h3>
<p><strong>Rules:</strong> These cards have paris of different animals and fish. Match the pairs to win and do
it as fast as possible!</p>
<p><span id="seconds">00</span>:<span id="tens">00</span></p>
</div>
<div class="card-container">
<p id="text"></p>
<div id="container"></div>
</div>
</div>
<button id="reset">Reset Game</button>
<!-- Contact Section -->
<div id="contact" class="contact-info">
<div class="contact-card">
<i class="card-icon far fa-envelope"></i>
<p>[email protected]</p>
</div>
<div class="contact-card">
<i class="card-icon fas fa-phone"></i>
<p>(951)391-9320</p>
</div>
<div class="contact-card">
<a href="https://github.com/ilagazo">
<i class="card-icon fab fa-github"></i>
<p>My Repositories</p>
</a>
</div>
<div class="contact-card">
<a href="https://www.linkedin.com/in/ivanro-lagazo/">
<i class="card-icon fab fa-linkedin"></i>
<p>My Profile</p>
</a>
</div>
</div>
<!-- JS Script -->
<script src="../WDD330/js/Challenge02/challenge02_part2.js"></script>
</body>
</html>