-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Pato's Website - MP Star Rush Mods</title> | ||
<meta name="apple-mobile-web-app-capable" content="yes" /> | ||
<meta name="apple-mobile-web-app-title" content="Pato"> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> | ||
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0" /> | ||
<link rel="apple-touch-icon" href="../../img/glasses.png" /> | ||
<link rel="icon" type="image/x-icon" href="../../favicon.ico"/> | ||
<link rel="stylesheet" type="text/css" href="style.css"/> | ||
<meta content="#bf0101" data-react-helmet="true" name="theme-color"> | ||
</head> | ||
<body> | ||
<div class="navbar"> | ||
<a href="../../index.html">Home</a> | ||
<a href="../tabs/mods.html">Mods</a> | ||
<a href="../tabs/blog.html">Blog</a> | ||
<a href="../tabs/aboutme.html">About Me</a> | ||
</div> | ||
<div class="contentAboutme"> | ||
<h1>My Mods</h1> | ||
<h2>Mario Party 9</h2> | ||
<div> | ||
<select onmousedown="pulllisting.play()" name="listingmods" id="" size="" onchange="window.location.href=this.value;"> | ||
<option value="../tabs/mods.html">None</option> | ||
<option value="mk8mods.html">Mario Kart 8</option> | ||
<option value="mp9mods.html" selected="selected">Mario Party 9</option> | ||
<option value="mario3dland.html">Super Mario 3D Land</option> | ||
<option value="brawlmods.html">Super Smash Bros. Brawl</option> | ||
|
||
<script> | ||
var pulllisting = new Audio(); | ||
pulllisting.src = "../../sounds/PullListing.wav"; | ||
</script> | ||
<select> | ||
</div> | ||
<br /> | ||
<div class="modslist"> | ||
<div class="mod"> | ||
<img src="../../img/mods/mp9/mikewa.png"/> | ||
<p>Mike Wazowski</p> | ||
<p><a href="https://gamebanana.com/mods/458166"><img src="../../img/buttons/download.png" style="width:100px;height:20px;"></a></p> | ||
</div> | ||
</div> | ||
<br /> | ||
</div> | ||
</body> | ||
</html> |