myFirstSite/_site/staff.html

43 lines
751 B
HTML
Raw Normal View History

2023-11-26 21:31:37 +00:00
<!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>