-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 1.04 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="robots" CONTENT="all" />
<link href="vlc.css" rel="stylesheet"/>
<link rel="icon" type="image/png" href="/favicon.png"/>
<title>The Virtual Light Company's Home</title>
</head>
<body>
<nav>
<ul>
<li><a href="main.html" target="content_area">Home</a></li>
<li><a href="libraries.html" target="content_area">Open Source</a>
<ul>
<li><a href="vlc_common.html" target="content_area">VLC Common</a></li>
<li><a href="urilib.html" target="content_area">URI Lib</a></li>
<li><a href="imageloaders.html" target="content_area">Java Imageloaders</a></li>
</ul>
</li>
<li><a href="history.html" target="content_area">History</a>
<li><a href="resources.html" target="content_area">Resources</a></li>
<li><a href="justin/index.html" target="parent">Justin</a></li>
</ul>
</nav>
<main id="main_body">
<iframe id="main_frame" src="main.html" name="content_area">
</iframe>
</main>
<footer class="vlc_footer">
<div>© The Virtual Light Company 2015-</div>
</footer>
</body>
</html>