-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.27 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.27 KB
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
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="index">
<meta name="author" content="Fabio Buracchi">
<title>Prototype</title>
<script src="/js/frame_utils.js"></script>
</head>
<body style="margin:0;">
<header>
<iframe
src="/components/navbar/navbar.html"
onload="resizeFrameByContent(this)"
name="nav_frame"
title="navbar"
style="display:block;width:100%;border:none;overflow:hidden;">
</iframe>
</header>
<main>
<iframe
src="/pages/home/home.html"
onload="resizeFrameByContent(this)"
name="main_frame"
title="content"
style="display:block;width:100%;border:none;overflow:hidden;">
</iframe>
</main>
<footer>
<iframe
src="/components/footer/footer.html"
onload="resizeFrameByContent(this)"
name="footer_frame"
title="footer"
style="display:block;width:100%;border:none;overflow:hidden;">
</iframe>
</footer>
</body>
</html>