-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiframe.html
More file actions
61 lines (61 loc) · 2.29 KB
/
Copy pathiframe.html
File metadata and controls
61 lines (61 loc) · 2.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/1ced12aa4e.js" crossorigin="anonymous"></script>
<title>An IFrame Embed</title>
<style>
body {
font-family: 'Roboto', sans-serif;
background: linear-gradient(120deg, #6457A6, #9DACFF);
}
.main {
display: flex;
}
.first {
align-items: center;
margin-left: 50px;
}
.second {
align-items: center;
margin-left: 50px;
}
.head {
width: 100%;
text-align: center;
}
h3 {
font-size: 40px;
}
</style>
</head>
<body>
<div class="head">
<h1>Intro To HTML and CSS</h1>
</div>
<div class="main">
<div class="first">
<iframe width="600" height="500" src="https://www.youtube.com/embed/ok-plXXHlWw?rel=0" title="HTML in 100 Seconds" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="second">
<iframe width="600" height="500" src="https://www.youtube.com/embed/OEV8gMkCHXQ&rel=0" title="CSS in 100 Seconds" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
<div class="exp">
<h2 class="head">SubScripts and SuperScripts</h2>
<!-- <i class="fa-solid fa-glass-water"></i> -->
<h3>
<i class="fa-solid fa-glass-water"></i>
H<sub>2</sub>O
</h3>
<h3>
<i class="fa-solid fa-calculator"></i>
X<sup>2</sup> + Y<sup>2</sup> = 20
</h3>
</div>
</body>
</html>