-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathVideo.html
109 lines (82 loc) · 3.64 KB
/
Video.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
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
<!doctype html>
<html>
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-144922094-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-144922094-1');
</script>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Sparrow Platform Video</title>
<meta name="description" content="An Intelligent ubiquitous communication platform for medical and psychological well-being of disaster victims">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:image" content="images/sparrow/sparrowLogoSquared.png" />
<meta itemprop="image" content="images/sparrow/sparrowLogoSquared.png"/>
<meta property="og:type" content="website" />
<meta property="og:title" content="Sparrow Platform Video" />
<meta property="og:description" content="An Intelligent ubiquitous communication platform for medical and psychological well-being of disaster victims" />
<meta property="og:image" content="images/sparrow/sparrowLogoSquared.png" />
<meta property="og:image:url" content="images/sparrow/sparrowLogoSquared.png" />
<link rel="shortcut icon" type="image/x-icon" href="images/sparrow/sparrowLogoSquared.png" />
<link rel="apple-touch-icon-precomposed" href="images/sparrow/sparrowLogoSquared.png">
<link rel="icon" sizes="192x192" href="images/sparrow/sparrowLogoSquared.png">
<link rel="shortcut icon" type="image/x-icon" href="images/sparrow/sparrowLogoSquared.png" />
<link rel="apple-touch-icon-precomposed" href="images/sparrow/sparrowLogoSquared.png"/>
<link rel="icon" sizes="192x192" href="images/sparrow/sparrowLogoSquared.png">
<meta name="author" content="Sparrow Platform Video">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=false" />
<meta name="viewport" content="user-scalable=no" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- <meta http-equiv="Cache-control" content="private,max-age:3600"> -->
<meta name="theme-color" content="#ffffff ">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!-- Material Icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
.html{
background: #ffffff;
}
.body{
background: #ffffff;
}
.videoContainer {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.linkToSparrow{
position: absolute;
width: 100%;
height: 15%;
top:85%;
text-align: center;
}
iframe {
/* optional */
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div class="videoContainer">
<iframe class="videoContainer__video" src="https://www.youtube.com/embed/N8Uf9miIKjU?autoplay=1" frameborder="0"></iframe>
</div>
</body>
</html>