-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.41 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.41 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
<html>
<head>
<title>Super Mario New Worlds</title>
<meta content="Super Mario New Worlds" property="og:title" />
<meta content="The home of Super Mario New Worlds!" property="og:description" />
<meta content="https://new-worlds.github.io" property="og:url" />
<meta content="#de0000" data-react-helmet="true" name="theme-color" />
<link rel="stylesheet" href="./css/global.css"> <!--Global styling-->
<link rel="stylesheet" href="./css/homePage.css"> <!--Styling exclusively for this page-->
</head>
<body>
<div class="titlebar">
<!--<a href="../">-->
<img class="homeButtonSplasher" src="./img/homeButtonSplasher.png" alt="Super Mario New Worlds">
<!--</a>--> <!--no need for the home button to be active since it just goes here anyway-->
</div>
<img class="gameLogo" src="./img/gameLogo.png" alt="Super Mario New Worlds">
<p class="introSentence"><b>Super Mario New Worlds</b> is a mod of New Super Mario Bros. Wii, currently in development...</p>
<div class="containerGame">
<div class="containerGameContent">
<h1 class="gameContentTitle">Game Contents</h1>
<ul class="gameContentFeatures">
<li>Many new levels to traverse</li>
<li>New graphics and designs, both foreign and familiar</li>
<li>Unique and creative ideas</li>
<li>New and exciting locations</li>
</ul>
</div>
</div>
</body>
</html>