-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.29 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
34
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="style.css" />
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script src="script.js"></script>
</head>
<body>
<div id="menu">
<h3><a target="contents" href="home.html"><img src="icons/Icon_16.ico" /> HOME</a></h3>
<h3>NEWS</h3>
<ul>
<li><a target="contents" href="news/dockings.html"><img src="icons/Icon_56.ico" />Dockings</a></li>
<li><a target="contents" href="news/classified.html"><img src="icons/Icon_14.ico" />Classified</a></li>
<li><a target="contents" href="news/obituary.html"><img src="icons/Icon_42.ico" />Obituary</a></li>
</ul>
<h3>REFERENCE</h3>
<ul>
<li><a target="contents" href="reference/directory.html"><img src="icons/Icon_44.ico" /> Directory</a></li>
<li><a target="contents" href="reference/code.html"><img src="icons/Icon_63.ico" /> The Code</a></li>
<li><a target="contents" href="reference/guides.html"><img src="icons/Icon_13.ico" />Guides</a></li>
</ul>
<h3><a target="contents" href="contact.html"><img src="icons/Icon_29.ico" />CONTACT US</a></h3>
</div>
<iframe id="contents" name="contents" src="home.html"></iframe>
</body>
</html>