-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (39 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico">
<link rel="stylesheet" href="./index.css">
<title>Mario Word</title>
</head>
<body>
<!-- defining the parent div -->
<div class="parent">
<!-- creating the clouds -->
<div class="clouds">
<img src="./assets/cloud1.png" alt="cloud1" id="cloud1">
<img src="./assets/cloud2.png" alt="cloud2" id="cloud2">
<img src="./assets/cloud1.png" alt="cloud3" id="cloud3">
</div>
<!-- creating main heading of the webpage -->
<div class="headings">
<div class="main-heading">
<span>Mario Word</span>
</div>
<!-- putting buttons -->
<div id="play-button">
<span>Play</span>
</div>
<div class="instructions-button">
<span>Instructions</span>
</div>
</div>
<!-- placing the mario image -->
<div class="mario-image">
<img src="./assets/Mario Walk - Fall/MarioWalkLarge.png" alt="" id="mario">
</div>
</div>
<script src="./index.js"></script>
</body>
</html>