forked from ifm/developerportal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logging2.html
70 lines (51 loc) · 1.94 KB
/
logging2.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
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Developer's portal</title>
<script src="jquery/jquery-3.4.1.min.js"></script>
<script>
$(function() {
$("#subheader").load("subheader.html");
$("#footer").load("footer.html");
});
</script>
<link rel="stylesheet" href="ifmr_devportal.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Cookie" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="readme.css">
<link rel="stylesheet" href="footerstyle.css">
<style>
h3 {
font-size: 1.25em;
}
iframe {
border: none;
width: 90%;
}
</style>
</head>
<body>
<div class="container">
<div id="subheader"></div>
<div class="section ospicker">
<h1>Logging</h1>
<a href="tutorial-welcome.html" style="color: #ff6e00;">← Back to index</a> <a href="two-heads.html" style="color: #ff6e00;">Next article →</a>
<div id="thepage">
<iframe src="Logging.html" id="mainframe"></iframe>
</div>
<br>
<a href="tutorial-welcome.html" style="color: #ff6e00;">← Back to index</a> <a href="two-heads.html" style="color: #ff6e00;">Next article →</a>
</div>
</div>
<div id="footer"></div>
<script>
var frame = document.getElementById("mainframe");
frame.onload = function() {
frame.style.height = frame.contentWindow.document.body.scrollHeight + 'px';
frame.style.width = frame.contentWindow.document.body.scrollWidth + 'px';
}
</script>
</body>
</html>