19 lines
440 B
HTML
19 lines
440 B
HTML
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="site.css">
|
|
<title>Hello</title>
|
|
</head>
|
|
<body>
|
|
<h1>Hello</h1>
|
|
<div class="content">
|
|
<p>What up!</p>
|
|
<p>This is the best place you could be at this moment</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>
|