-
Notifications
You must be signed in to change notification settings - Fork 0
/
virtu4.html
47 lines (43 loc) · 1.65 KB
/
virtu4.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
<!-- ffmpeg -i input.mp4 -vcodec h264 output.mp4 -->
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="We are developing a 3D creation tool with AI.">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Symbiote</title>
<link rel="icon"
type="image/png"
href="/assets/favicon.ico" />
<meta name="viewport" content="width=device-width">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-172399195-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-172399195-1');
</script>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/fontawesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<link href="css/grayscale.css" rel="stylesheet">
<style>
body {
background-color: white;
overflow: hidden; /* Hide scrollbars */
}
</style>
</head>
<body>
<video id="vid"
width="100%"
autoplay="autoplay" loop="loop" muted="muted" controls>
<source src="/assets/virtu4.mp4" type="video/mp4">
<video>
<script> document.getElementById('vid').play(); </script>
</body>
</html>