-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTheBigIdea.html
37 lines (34 loc) · 1.09 KB
/
TheBigIdea.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>About Dave</title>
<meta Charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header>
<h1>The Fictional Writing of Dave Wexler</h1>
<h2>A catalogue and information bank of Dave's screenplays, novels, short stories, and children's stories.</h3>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li><li><a href="screenplays.html">Screenplays</a>
<ul>
<li><a href="ACoL.html">A Consequence of Life</a></li>
<li><a href="Spirit.html">Spirit</a></li>
</ul>
</li><li class="current"><a href="novels.html">Novels</a>
<ul>
<li><a href="Tullenspire.html">Tullenspire</a></li>
<li class="current"><a href="#">The Big Idea</a></li>
</ul>
</li><li><a href="shortstories.html">Short Stories</a>
<ul>
<li><a href="#">Justice for All</a></li>
<li><a href="#">Memory of a Dream</a></li>
</ul>
</li><li><a href="childrens.html">Children's Stories</a></li><li><a href="about.html">About Me</a></li>
</ul>
</nav>
</body>
</html>