-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (55 loc) · 1.01 KB
/
index.html
File metadata and controls
71 lines (55 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<title>AWS Video Streaming</title>
<style>
body{
background:#111;
color:white;
font-family:Arial;
text-align:center;
margin:0;
}
.header{
background:#000;
padding:20px;
font-size:28px;
font-weight:bold;
}
.container{
margin-top:40px;
}
video{
border-radius:10px;
box-shadow:0 0 20px rgba(0,0,0,0.8);
}
.description{
margin-top:20px;
font-size:18px;
color:#ccc;
}
.footer{
margin-top:60px;
padding:20px;
background:#000;
font-size:14px;
}
</style>
</head>
<body>
<div class="header">
AWS Video Streaming Platform 🎬
</div>
<div class="container">
<video width="800" controls>
<source src="https://arz-kiya-he.s3.us-east-1.amazonaws.com/%40anuvjain+%F0%9F%A4%8D%2C%2C%2C%23viral+%23foryou+%23explorepage+%23explore+%23fyp+%2C%2C%2C%5B+dastakhat+tour%2C+anuv+jain%2C+arz+kiy.mp4" type="video/mp4">
</video>
<div class="description">
Streaming video directly from Amazon S3 using GitHub Pages.
</div>
</div>
<div class="footer">
Cloud Project • AWS S3 + GitHub Pages
</div>
</body>
</html>