-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexercise-1.html
More file actions
144 lines (126 loc) · 3.29 KB
/
exercise-1.html
File metadata and controls
144 lines (126 loc) · 3.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Exercise #1 || Product feature with video</title>
<!-- Reset -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/modern-normalize@2.0.0/modern-normalize.min.css"
/>
<!-- Google Fonts -->
<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=Figtree:wght@400;700&display=swap"
rel="stylesheet"
/>
<style>
html {
font-size: 16px;
font-family: "Figtree", sans-serif;
line-height: 1.5;
}
body {
color: #d0d0d1;
}
.muted {
color: #8a8b8c;
}
h2 {
margin: 0 0 1rem;
}
h2 {
margin: 1rem 0;
}
h2 {
font-size: 2.25rem;
}
h3 {
font-size: 1rem;
}
.large {
font-size: 1.125rem;
}
#feature {
background-color: #151618;
padding: 8rem 6rem;
display: flex;
justify-content: center;
align-items: center;
gap: 8rem;
height: 100vh;
}
#feature header {
margin-bottom: 4rem;
}
#content {
max-width: 40rem;
}
#grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
}
/* Air */
#media video {
border-radius: 1rem;
border: 1px solid white;
object-fit: cover;
}
</style>
</head>
<body>
<section id="feature">
<div id="content">
<header>
<h2>Lightning-Fast Data Transfers</h2>
<p class="large muted">
Experience the power of lightning-fast data transfers, a standout
feature of this revolutionary encryption solution.
</p>
</header>
<div id="grid">
<div>
<img src="icons/icon-copy.svg" alt="Copy" />
<h3>Rapid File Transfers</h3>
<p>Effortlessly transfer large files in a fraction of the time.</p>
</div>
<div>
<img src="icons/icon-clock.svg" alt="Clock" />
<h3>Real-Time Streaming</h3>
<p>
Get instant access to critical information without any lag or
delay.
</p>
</div>
</div>
</div>
<div id="media">
<!-- Air -->
<!-- <iframe
width="560"
height="315"
src="https://www.youtube.com/embed/vqXLGX0szIQ?si=UIhMjtpHejjGPpTe"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
></iframe> -->
<video
src="videos/video-1@c.mp4"
width="560"
height="315"
controls
muted
autoplay
poster="images/video-poster.jpg"
>
Your browser doesn't support HTML5 video tag.
</video>
</div>
</section>
</body>
</html>