-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (50 loc) · 2.24 KB
/
index.html
File metadata and controls
57 lines (50 loc) · 2.24 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zelda Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Jigoku</h1>
<nav>
<a href="" class="active">Home</a>
<a href="./About/about.html">About</a>
<a href="Download/download.html">Download</a>
<a href="signup\index_signup.html">Signup</a>
</nav>
</header>
<section class="home">
<img src="assets/mount2.png" class="mount2">
<img src="assets/mount1.png" class="mount1">
<img src="assets/bush2.png" class="bush2">
<h1 class="title">Zelda</h1>
<img src="assets/bush1.png" class="bush1">
<img src="assets/leaf2.png" class="leaf2">
<img src="assets/leaf1.png" class="leaf1">
</section>
<section class="about">
<h1>Zelda</h1>
<p>Zelda is an action-adventure game franchise created by the Japanese game designers Shigeru Miyamoto and Takashi Tezuka. It is primarily developed and published by Nintendo, although some portable installments and re-releases have been outsourced to Flagship, Vanpool, and Grezzo. The gameplay incorporates action-adventure and elements of action RPG games.</p>
<br/><h3>Zelda using Pygame</h3>
<p>This Zelda is created using Pygame and currently consists of only one level and limited monsters.
<ul>
<li>Pygame is a library for creating games in Python.</li>
<li>Pygame is used to create the game engine.</li>
</ul>
</p>
<h1>Characters - </h1>
<ul>
<li><img src="assets/character1.png" class="character1">Zelda</li>
<li><img src="assets/character2.png" class="character2">Monster</li>
<li><img src="assets/character3.png" class="character3">fire spirt</li>
<li><img src="assets/character4.png" class="character4">bear</li>
<li><img src="assets/character5.png" class="character5">Ganon</li>
<li><img src="assets/character6.png" class="character6">Link</li>
</ul>
</section>
<script src="script.js"></script>
</body>
</html>