-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasses.html
61 lines (35 loc) · 1.33 KB
/
classes.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
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head >
<link rel="stylesheet" href="css/mystyle.css">
<style>
@media only screen and (min-width: 771px ) {
.rick{
width:460px;
}
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="js/script.js" defer></script>
</head>
<body>
<div id="app-header"></div>
<script src="js/header.js"></script>
<h3>Foucault pendulum</h3>
<div class="video-container" >
<div class="image-box">
<iframe class="video" src="https://www.youtube.com/embed/VooAOjIPIgk" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen>Loading...</iframe>
</div>
</div>
<h3>Placeholder</h3>
<div class="video-container" >
<div class="image-box">
<video class="video" width="100%" height="auto" controls class="rick">
<source src="media/Rick.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</body>
</html>