-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChapter 2.html
More file actions
70 lines (57 loc) · 2.51 KB
/
Chapter 2.html
File metadata and controls
70 lines (57 loc) · 2.51 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<title>Chapter_2</title>
<link rel="stylesheet" href="./public/bootstrap.min.css" />
<style>
body {
margin: 0 auto;
width: 800px;
}
.example { margin-top: 10px; }
.title { float: left; }
.fullscreen { float: right; }
iframe {
width: 100%;
height: 250px;
background: white;
}
</style>
</head>
<body>
<h1>Chapter_2 Example</h1>
<ul>
<li><a href="#HTMLPage.html">HTMLPage.html</a></li>
<li><a href="#HTMLPageWithLink.html">HTMLPageWithLink.html</a></li>
<li><a href="#HTMLPageWithOuterScript.html">HTMLPageWithOuterScript.html</a></li>
<li><a href="#HTMLPageWithScript.html">HTMLPageWithScript.html</a></li>
<li><a href="#HTMLPageWithStyle.html">HTMLPageWithStyle.html</a></li>
</ul>
<hr />
<div id="HTMLPage.html" class="example well">
<h2 class="title">HTMLPage.html</h2>
<h4 class="fullscreen"><a class="btn btn-primary" href="./Chapter_2/HTMLPage.html">Full Screen</a></h4>
<iframe src="./Chapter_2/HTMLPage.html"></iframe>
</div>
<div id="HTMLPageWithLink.html" class="example well">
<h2 class="title">HTMLPageWithLink.html</h2>
<h4 class="fullscreen"><a class="btn btn-primary" href="./Chapter_2/HTMLPageWithLink.html">Full Screen</a></h4>
<iframe src="./Chapter_2/HTMLPageWithLink.html"></iframe>
</div>
<div id="HTMLPageWithOuterScript.html" class="example well">
<h2 class="title">HTMLPageWithOuterScript.html</h2>
<h4 class="fullscreen"><a class="btn btn-primary" href="./Chapter_2/HTMLPageWithOuterScript.html">Full Screen</a></h4>
<iframe src="./Chapter_2/HTMLPageWithOuterScript.html"></iframe>
</div>
<div id="HTMLPageWithScript.html" class="example well">
<h2 class="title">HTMLPageWithScript.html</h2>
<h4 class="fullscreen"><a class="btn btn-primary" href="./Chapter_2/HTMLPageWithScript.html">Full Screen</a></h4>
<iframe src="./Chapter_2/HTMLPageWithScript.html"></iframe>
</div>
<div id="HTMLPageWithStyle.html" class="example well">
<h2 class="title">HTMLPageWithStyle.html</h2>
<h4 class="fullscreen"><a class="btn btn-primary" href="./Chapter_2/HTMLPageWithStyle.html">Full Screen</a></h4>
<iframe src="./Chapter_2/HTMLPageWithStyle.html"></iframe>
</div>
</body>
</html>