-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 718 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (28 loc) · 718 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Side-by-Side Videos</title>
<style>
.video-container {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.video {
width: 45%;
}
</style>
</head>
<body>
<div class="video-container">
<video class="video" controls>
<source src="Track-front.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<video class="video" controls>
<source src="Track-store.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</body>
</html>