-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (37 loc) · 1.77 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
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<script src="./js/script.js" defer></script>
<title>Mario Game</title>
</head>
<body id="game-board">
<div>
<img src="./images/MysteryBlock.png" alt="MysteryBlock" id="mystery-block-myDegrees" class="mystery-blocks">
<img src="./images/MysteryBlock.png" alt="MysteryBlock" id="mystery-block-aboutMe" class="mystery-blocks">
<img src="./images/MysteryBlock.png" alt="MysteryBlock" id="mystery-block-myHobbies" class="mystery-blocks" >
<img src="./images/mario.gif" alt="Mario" class="mario">
<img class="floor-block" >
</div>
<div id="myDegrees-textField">
<h2>My Degrees</h2>
<p>1. Technical course in Systems Development</p>
<p>2. Currently studying Systems Analysis and Development</p>
<p>3. I'm Study Html,Css, Js. Already study React, React Native, Python, Java and NodeJs, Docker, SQL, NOSQL</p>
</div>
<div id="aboutMe-textField">
<h2>About me</h2>
<p>
My programming journey began with game hacking, but I discovered the real magic in creating tools. This passion has turned my hobby, and I'm now seeking my first job to enhance my skills in what I love
</p>
</div>
<div id="myHobbies-textField">
<h2>My Hobbies</h2>
<p>1.Gym</p>
<p>2.Programming</p>
<p>3.Trekking</p>
</div>
</body>
</html>