-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideos.html
42 lines (40 loc) · 1.42 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>vidoes</title>
<style>
.container{
background-image:linear-gradient(rgba(22,22,22,0.7),rgba(22,22,22,0.9)), url("images/flowers.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
overflow: hidden;
}
.container video{
width: 300px;
height:300px;
display: inline-flex;
padding: 10px;
border: 2px solid coral;
border-radius: 3px;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<video src="videos/video1.mp4" controls muted loop autoplay></video>
<video src="videos/video2.mp4" controls loop muted autoplay></video>
<video src="videos/video3.mp4" controls loop muted autoplay></video>
<video src="videos/video4.mp4" controls loop muted autoplay></video>
<video src="videos/video5.mp4" controls loop muted autoplay></video>
<video src="videos/vidoe6.mp4" controls loop muted autoplay></video>
<video src="videos/video7.mp4" controls loop muted autoplay></video>
<video src="videos/video8.mp4" controls loop muted autoplay></video>
</div>
</div>
</body>
</html>