forked from elianaakim/portfolio-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject2.html
More file actions
38 lines (34 loc) · 1.27 KB
/
project2.html
File metadata and controls
38 lines (34 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project 2 - Whack-A-Mole Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav aria-label="Main Navigation">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
<div class="container">
<h1>Whack-A-Mole Scratch Game</h1>
<div class="row">
<div class="column">
<img src="https://cdn.glitch.global/54bf2918-0a5d-44de-9061-5413de48dbd9/Screen-Shot-2022-04-06-at-10.06.37-AM.png?v=1739842825652" alt="Whack-A-Mole Game" style="width: 80%; max-width: 600px;">
</div>
<div class="column">
<p>A fun and interactive game built using <b>Scratch</b>, where the user has to hit the appearing moles before they disappear.</p>
<ul>
<li>Score tracking</li>
<li>Difficulty increase over time</li>
<li>Colorful and fun UI</li>
</ul>
</div>
</div>
<p><a href="portfolio.html">Back to Portfolio</a></p>
</div>
</body>
</html>