Files
RetroCityWeb/index.html
2018-04-21 20:20:29 -05:00

76 lines
2.9 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Retro City</title>
<script src='sketch.js' type="text/javascript"></script>
<link href='style.css' rel='stylesheet'>
</head>
<body>
<div class="wraper">
<!--Header/Nav-->
<div class="header">
<h1 id="logo">Retro City</h1>
<ul class="nav">
<li><a href="./index.html"><strong>Home</strong></a></li>
<li><a href="./pong.html">Pong</a></li>
<li><a href="./systems.html">Systems</a></li>
<li><a href="./games.html">Games</a></li>
</ul>
</div>
<!--Catagories: Located on right-->
<div class="catagories">
<h3 class="titles">catagories</h5>
<ul>
<li><a href="#welcome">Welcome</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#contact">Contact US</a></li>
</ul>
</div>
<!--Content for site-->
<div class="content">
<h2 class="titles" id="welcome">Welcome</h2>
<div class="text" id="centered">
<p>Welcome to RetroCity we are happy to have you here.</p>
<p>Our site is a place for the all things retro to live. We are fairly new so we don't have much on display at the moment but in time we may put more up. We hope that you enjoy your time on our site and hope that you come again to check if anything else has been added.</p>
</div>
<h2 class="titles" id="about">About Us</h2>
<div class="text" id="centered">
<p>Our team consists of three people</p>
<p>Brandon Behar, Erin Sims, and Wade Kelly-Higgs</p>
</div>
<h2 class="titles" id="contact">Contact Us</h2>
<div class="text" id="centered">
<p>The best way to get in contact is through email, irc, or discord. </p>
<p>Discord: ###########</p>
<p>IRC: ###########</p>
<p>Email: ######@#####.###</p>
<p>Or the contact form</p>
<form>
<label for="name">Name</labe>
<br>
<input id='name' type="text" name="name">
<br>
<label for="_replyto">Email</label>
<br>
<input id="email" type="email" name="_replyto">
<br>
<label for="content">Message</label>
<br>
<textarea id="message" name="content" rows="8" cols="50"></textarea>
<br>
<input type="submit" value="Send" onclick="send_email()">
</form>
</div>
</div>
</div>
<!--Footer-->
<div class="footer">
<p>Created by: Brandon Behar, Erin Sims, Wade Kelly-Higgs</p>
</div>
</body>
</html>