43 lines
751 B
HTML
43 lines
751 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Staff</title>
|
|
<link rel="stylesheet" href="/assets/css/styles.css">
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
|
|
<a href="/" >Home</a>
|
|
|
|
<a href="/about.html" >About</a>
|
|
|
|
<a href="/blog.html" >Blog</a>
|
|
|
|
<a href="/staff.html" class="current">Staff</a>
|
|
|
|
</nav>
|
|
|
|
<h1>Staff</h1>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
<h2><a href="/authors/jill.html">Jill Smith</a></h2>
|
|
<h3>Chief Editor</h3>
|
|
<p><p>Jill is an avid fruit grower based in the south of France.</p>
|
|
</p>
|
|
</li>
|
|
|
|
<li>
|
|
<h2><a href="/authors/ted.html">Ted Doe</a></h2>
|
|
<h3>Writer</h3>
|
|
<p><p>Ted has been eating fruit since he was baby.</p>
|
|
</p>
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</body>
|
|
</html>
|