-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path05-videos.html
47 lines (42 loc) · 1.64 KB
/
05-videos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSS Property 5 - Videos</title>
</head>
<body>
<h1>Videos</h1>
<h2>Video Width and Height</h2>
<video width="320" height="240" controls>
<source src="./src/video.mp4" type="video/mp4" />
<source src="./src/video.ogg" type="video/ogg" />
Your browser does not support the video tag.
</video>
<h2>Video Border Radius</h2>
<video width="320" height="240" style="border-radius: 20px" controls>
<source src="./src/video.mp4" type="video/mp4" />
<source src="./src/video.ogg" type="video/ogg" />
Your browser does not support the video tag.
</video>
<h2>Video Opacity</h2>
<video width="320" height="240" style="opacity: 0.5" controls>
<source src="./src/video.mp4" type="video/mp4" />
<source src="./src/video.ogg" type="video/ogg" />
Your browser does not support the video tag.
</video>
<h2>Video Filter</h2>
<video width="320" height="240" style="filter: grayscale(100%)" controls>
<source src="./src/video.mp4" type="video/mp4" />
<source src="./src/video.ogg" type="video/ogg" />
Your browser does not support the video tag.
</video>
<h2>Video Border</h2>
<video width="320" height="240" style="border: 5px solid red" controls>
<source src="./src/video.mp4" type="video/mp4" />
<source src="./src/video.ogg" type="video/ogg" />
Your browser does not support the video tag.
</video>
</body>
</html>