-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
34 lines (34 loc) · 965 Bytes
/
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
34
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Source Browser</title>
<link rel="stylesheet" href="styles.css">
<script src="scripts.js"></script>
</head>
<frameset rows="58,*"
border="0"
onload="onPageLoaded();">
<frame name="h"
src="header.html"
scrolling="no"
noresize="noresize">
<frameset id="splitter"
cols="504,*"
frameborder="1"
border="20"
bordercolor="#EEEEEE"
framespacing="20">
<frame name="n"
id="n"
src="results.html"
border="0"
frameborder="0">
<frame name="s"
id="s"
src="overview.html"
border="0"
frameborder="0">
</frameset>
</frameset>
</html>