-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweek1.html
77 lines (59 loc) · 2.23 KB
/
week1.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
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- UIkit CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/uikit.min.css" />
<!-- UIkit JS -->
<!-- Styles added to create responsive iframes -->
<style>
.resp-container {
position: relative;
overflow: hidden;
padding-top: 56.25%;
}
.resp-iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
</style>
</head>
<body>
<ul class="uk-breadcrumb">
<a href="index.html" uk-icon="home"></a>
<li><a href="csp.html">Computer Science Principles</a></li>
<li><span>Week1</span></li>
</ul>
<div class="uk-position-relative uk-visible-toggle uk-dark" tabindex="-1" uk-slideshow>
<ul class="uk-slideshow-items">
<li>
<div class="resp-container">
<iframe class="resp-iframe" src="notes/lesson.html" height="500" width="700"></iframe>
</div>
</li>
<div class="resp-container">
<iframe class="resp-iframe" src="notes/lesson.html" height="500" width="700"></iframe>
</div>
</li>
</ul>
<a class="uk-slidenav-large uk-position-center-left uk-position-small uk-hidden-hover" href="#"
uk-slidenav-previous uk-slideshow-item="previous"></a>
<a class="uk-slidenav-large uk-position-center-right uk-position-small uk-hidden-hover" href="#"
uk-slidenav-next uk-slideshow-item="next"></a>
<div class="uk-position-top-center uk-position-small uk-dark">
<ul class="uk-dotnav">
<li uk-slideshow-item="0"><a href="#">Item 1</a></li>
<li uk-slideshow-item="1"><a href="#">Item 2</a></li>
</ul>
</div>
</div>
</body>
</html>