28 lines
534 B
HTML
28 lines
534 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Project: Doodle Guidebook</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" href="pages/res/main.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div id="sidebar">
|
|
<nav>
|
|
<h3>Navigation</h3>
|
|
|
|
<ul>
|
|
<li><a href="pages/Home.html" target="frame">Home</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
|
|
<div id="content">
|
|
<div>
|
|
<iframe name="frame" src="pages/Home.html"></iframe>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |