obshagce/index.html

53 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en-AU">
<head>
<meta charset="UTF-8">
<title>EXAMPLE GAME :)</title>
<meta name="author" content="Blueberry Soft">
<meta name="description" content="Example game for OBSHAGCE">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<base target="_self">
<link type="text/css" rel="stylesheet" href="base.css">
<style>
body {
background-color:pink; /* main bg colour */
color:red; /* main text colour */
}
header,
hr,
section {
background-color:orange; /* panel background colour */
border:2px outset orange; /* panel border - size | style | colour */
}
</style>
</head>
<body>
<main id="titlescreen">
<header>
<h1>Example Game :)</h1>
</header>
<hr>
<section id="credit">
<h2>A Game by <a target="_blank" href="http://blueberrysoft.ryliejamesthomas.net/">Blueberry Soft</a>.</h2>
</section>
<section id="splash">
<a href="boards/room_01.html"><img class="no_scale" src="images/splash.gif" alt="An animated, growing spiral. Click to continue."></a>
</section>
<section id="notes">
<h3>Notes:</h3>
<ul>
<li>Example game for <abbr title="Official Blueberry Soft Hypermedia Adventure Game Construction Engine">OBSHAGCE</abbr>.</li>
<li>Click on things to play.</li>
<li>All included media is free to use!</li>
</ul>
</section>
</main>
</body>
</html>