-
Notifications
You must be signed in to change notification settings - Fork 0
/
mgames.html
36 lines (30 loc) · 1.08 KB
/
mgames.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--
This is an HTML comment
You can write text in a comment and the content won't be visible in the page
-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="https://cdn.glitch.global/de32b24f-28c6-472c-8631-3e7e06262397/favicon.ico?v=1681460954349" />
<!--
This is the page head - it contains info the browser uses
Like the title, which appears on the browser tab but not inside the page
Further down you'll see the content that displays in the page
-->
<title>Games</title>
<!-- The website stylesheet -->
<link rel="stylesheet" href="/style.css" />
<!-- The website JavaScript file -->
<script src="/script.js" defer></script>
</head>
<body>
<h1 class="title">Games</h1>
<h2>
Below is a list of games that you can play:
</h2>
<a class="btn--remix" href="penaltyshooters.html">Penalty Shootout</a>
<a class="btn--remix" href="clumsybird.html">Clumsy Bird</a>
</body>
</html>