-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (88 loc) · 4.42 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<link rel="icon" type="image/x-icon" href="https://impactcoding.github.io/rr-vr-ranking/assets/favicon/RRLogo.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<section id="banner">
<div class="container">
<!-- Main Logo -->
<a href="#" class="logo">
<img src="./Images/RetroRewindLogo.png" alt="Mario Kart Wii Mod Logo" height="auto" width="100%" float="right">
</a>
</section>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#download">Download</a></li>
<li><a href="#credits">Credits</a></li>
<li><a href="https://impactcoding.github.io/rr-vr-ranking/">Retro Rewind VR Leaderboard</a></li>
<li><a href="https://discord.gg/retrorewind">Retro Rewind Discord</a></li>
<li><a href="wheelwizard.html">WheelWizard</a></li>
</ul>
</nav>
</div>
<div class="row">
<div class="column">
<img src="https://i.pinimg.com/originals/d0/3e/db/d03edb28259746989e9df78e7061770b.png" alt="Decorative Kart Image" class="image" height="250px" width="280px" max-width="300px">
</div>
<div class="column">
<img src="https://impactcoding.github.io/rr-vr-ranking/assets/characters/Peach.webp" alt="Decorative Kart Image" class="image" height="250px" width="280px" max-width="300px">
</div>
<div class="column">
<img src="https://preview.redd.it/lnln0v787dxb1.png?width=640&crop=smart&auto=webp&s=9ffd733edac88dac6cdb30008aaeaf523e84abf5" alt="Decorative Kart Image" class="image" height="250px" width="280px" max-width="300px">
</div>
</div>
</header>
<main>
<!-- Hero Section -->
<section id="hero">
<h2>Experience Mario Kart Like Never Before!</h2>
</section>
<!-- About Section -->
<section id="about">
<div class="container">
<h2>About the Mod</h2>
<p>This mod enhances your Mario Kart Wii experience with new tracks,custom characters, and gameplay improvements. Whether you're a casual racer or a hardcore competitor, this mod has something for everyone!</p>
</div>
<!-- Download Section -->
<section id="download">
<div class="container">
<h2>Download</h2>
<p>Follow the instructions to download and install the mod:</p>
<ol>
<li>Ensure you have a clean Mario Kart Wii ISO file.</li>
<li>Download the mod files from the link below.</li>
<li>Use modding tools like Dolphin Emulator or Riivolution to apply the mod.</li>
</ol>
<a href="https://wiki.tockdom.com/wiki/Retro_Rewind" class="download-button">Download the Mod</a>
</div>
</section>
<!-- Credits Section -->
<section id="credits">
<div class="container">
<h2>Credits</h2>
<p>Special thanks to the amazing team and community that made this mod possible!</p>
<ul>
<li>Developer:</li> <a href="https://www.youtube.com/@ZPL__">ZPL</a><li>RetroWFC and The Entire Retro Rewind Team</li>
<li>Website Designer:</li> <a href="https://www.discord.com/users/257196097494188032">Weebo</a>
<li>Special Thanks to:</li> <a href="https://www.discord.com/users/208571037707665408">Noel</a> <a href="https://www.discord.com/users/331794107791835136">kytronix</a> <a href="https://www.discord.com/users/342736380163653633">Impact</a>
<li>Testers: all Testers</li>
<li>also Thanks: TO YOU for Playing the MOD</li>
</ul>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 Retro Rewind. All rights reserved. Not affiliated with Nintendo.</p>
</div>
</footer>
</body>
</html>