This commit is contained in:
Jon Janzen
2022-02-18 19:32:29 -07:00
commit d80b3a2b46
3 changed files with 71 additions and 0 deletions

46
burgers_of_the_day.html Normal file
View File

@@ -0,0 +1,46 @@
<html>
<head>
<link rel="stylesheet" href="site.css">
<title>Burgers of the Day</title>
</head>
<body>
<h1>Burger of the Day</h1>
<div class="content">
<table>
<tr>
<th>Day</th>
<th>Name</th>
<th>Description</th>
<th>Illustration</th>
</tr>
<tr>
<td>First</td>
<td>Cheese!</td>
<td>
<p>The first day is a Cheese! burger.</p>
<p>Contrary to what you may think this burger is <i>entirely</i> cheese. Bun, Cheese. Lettuce, Cheese. Tomato, Cheese. Meat, Believe it or not also Cheese!</p>
<p>
The Cheese! burger is transcendent in the amount of cheese one must consume to enjoy it. It must be fully consumed otherwise you will be subject to the uncheesed.:w
</p>
</td>
<td>No image available</td>
</tr>
<tr>
<td>7th of 1000</td>
<td>Frumble</td>
<td>
<p>Frumble is best</p>
<p>Frumble burgers are created when a Fumble happens</p>
<p>The Frumble burger has been referred to as a simple mistake, but those in the know are aware that it is highly sought after for the intensity of emotions surrounding its creation</p>
</td>
<td>We should really employ an illustrator</td>
</tr>
</table>
</div>
<div class="nav">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="burger_of_the_day.html">Burgers of the Day</a></li>
</ul>
</div>
</body>

17
home.html Normal file
View File

@@ -0,0 +1,17 @@
<html>
<head>
<link rel="stylesheet" href="site.css">
<title>Hello</title>
</head>
<body>
<h1>Hello</h1>
<div class="content">
<p>What up!</p>
</div>
<div class="nav">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="burgers_of_the_day.html">Burgers of the Day</a></li>
</ul>
</div>
</body>

8
site.css Normal file
View File

@@ -0,0 +1,8 @@
.nav {
position: absolute;
top: 22;
right: 22;
}
.content {
max-width:81%;
}