-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 783 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 783 Bytes
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
<!DOCTYPE html>
<html>
<head><title>MySite</title></head>
<body>
<header>
<nav>
<menu align="center">
<a href="home.html" target="frameBody">Home</a>
<span>|</span>
<a href="about.html" target="frameBody">About</a>
<span>|</span>
<a href="contact.html" target="frameBody">Contact</a>
</menu>
</nav>
</header>
<section>
<iframe src="Home.html" name="frameBody" width="1000" height="400"></iframe>
</section>
<footer>
<div align="center">
© copyright 2019
</div>
</footer>
</body>
</html>