Files
RetroCityWeb/games.html
2018-04-21 16:30:24 -05:00

58 lines
3.3 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">Home</a></li>
<li><a href="pong.html">Pong</a></li>
<li><a href="systems.html">Systems</a></li>
<li><a href="games.html"><strong>Games</strong></a></li>
</ul>
</div>
<!--Catagories: Located on right-->
<div class="catagories">
<h3 class="titles">catagories</h5>
<ul>
<li><a href="#bertie">Bertie</a></li>
<li><a href="#zelda">Zelda</a></li>
<li><a href="#sonic">Sonic</a></li>
</ul>
</div>
<!--Content for site-->
<div class="content">
<h2 class="titles" id="bertie">Bertie</h2>
<div class="text">
<img src="media/bertie.png" alt="">
<p>Bertie the Brain is the earliest known computer game to have a video display. released August 25, 1950, Bertie was a tic-tac-toe game featuring an artificial intelligence opponent with an adjustable difficulty level, and was created to demonstrate the additron tube, a miniature vacuum tube that was made obsolete by the transistor before it could be used in any machine other than Bertie. Bertie no longer exists, as the only machine to ever exist was disassembled after two weeks of display.</p>
</div>
<h2 class="titles" id="zelda">Zelda</h2>
<div class="text">
<img src="media/loz.png" alt="">
<p>The Legend of Zelda is an action-adventure video game developed and published by Nintendo and designed by Shigeru Miyamoto and Takashi Tezuka. Set in the fantasy land of Hyrule, the plot centers on a boy named Link, the playable protagonist, who aims to collect the eight fragments of the Triforce of Wisdom in order to rescue Princess Zelda from the antagonist, Ganon. During the course of the game, the player sees Link from a top-down perspective and must navigate him through the overworld and several dungeons, defeating enemies and finding secrets along the way.</p>
</div>
<h2 class="titles" id="sonic">Sonic the Hedgehog</h2>
<div class="text">
<img src="media/sonic.jpg" alt="">
<p>Sonic the Hedgehog[b] is a platform game developed by Sonic Team and published by Sega for the Sega Genesis console. The game was first released in North America in June 1991, and in PAL regions and Japan the following month. The game features an anthropomorphic hedgehog named Sonic in a quest to defeat Doctor Robotnik, a scientist who has imprisoned animals in robots and stolen the magical Chaos Emeralds. Sonic the Hedgehog's gameplay involves collecting rings as a form of health and a simple control scheme, with jumping and attacking controlled by a single button.</p>
</div>
</div>
</div>
<!--Footer-->
<div class="footer">
<p>Created by: Brandon Behar, Erin Sims, Wade Kelly-Higgs</p>
</div>
</body>
</html>