-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslides.html
More file actions
69 lines (56 loc) · 3.05 KB
/
Copy pathslides.html
File metadata and controls
69 lines (56 loc) · 3.05 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
<!DOCTYPE html>
<html>
<head>
<link href="pages.css" rel="stylesheet" type="text/css" />
<script src="function2.js"></script>
<link rel="icon" type="image/x-icon" href="tfcCursor.png">
<title>Meeting Slides</title>
</head>
<body>
<!-- main content -->
<main>
<!-- logo -->
<div class="logo">
<img src="tfcLogoblue.png" alt="The Future of Code Logo" width="200" height="200">
</div>
<div class="slideshow-container">
<!-- Full-width images with number and caption text -->
<div class="mySlides fade">
<div class="numbertext">1 / 5</div>
<iframe src="https://docs.google.com/presentation/d/e/2PACX-1vRPwwTMROCF2IBCIawji2dgqQSwP6xVI_Ht4uqqwMRo5Cb7JAiZcfKQcdEIZstKO4Ssks7IzsgVXdpF/pubembed?start=false&loop=true&delayms=3000" frameborder="0" width="960" height="569" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 5</div>
<iframe src="https://docs.google.com/presentation/d/e/2PACX-1vTWBUp498EG-YDKSdDIGto0S8buAlmvNuVDxfKQuH0C9kD5ml0wDvoOTfmigoeXN_oeyJQtdfwpyrbn/pubembed?start=false&loop=true&delayms=3000" frameborder="0" width="960" height="569" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 5</div>
<iframe src="https://docs.google.com/presentation/d/e/2PACX-1vQlDrr0wZukdETtsGYMmdYHJNA3ABqelOd_m0t1f-LEHihL810pyrDSrl1-UDrBtmyoUVfuDtQzARHe/pubembed?start=false&loop=true&delayms=3000" frameborder="0" width="960" height="569" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>
</div>
<div class="mySlides fade">
<div class="numbertext">4 / 5</div>
<iframe src="https://docs.google.com/presentation/d/e/2PACX-1vSy-sEyM7Wgn5bZOwwpLFH2lzo4YNsEtxkwXr4P-hf0b-BNM2fiyu5SGZwFN2EZqM59QjBIzE6B2yOZ/pubembed?start=false&loop=true&delayms=3000" frameborder="0" width="960" height="569" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>
</div>
<div class="mySlides fade">
<div class="numbertext">5 / 5 </div>
<iframe src="https://docs.google.com/presentation/d/e/2PACX-1vR6Mi_M_mjC3WQszcDqvY5we3rOqX9JVj5BTDpjPOO1VN0v1Uz8Yw2nbltDojBOKS5YorpVYhwvBRFS/pubembed?start=false&loop=true&delayms=3000" frameborder="0" width="960" height="569" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<!-- The dots/circles -->
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
</main>
<!-- footer -->
<footer class="copyright">
© 2024 |
<a href="#home">The Future of Code ⌂ | Southlake, TX | Carroll High School</a>
</footer>
</body>
</html>