-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 914 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/index.css">
<title>Netflix</title>
</head>
<body onload="">
<div class="container">
<div id="privacy">
<H1>NETFLIX</H1>
<p>Nós usamos cookies para melhorar a experiência do usuário.
Ao continuar você indica concordar com nossa <b>política de privacidade</b>.
</p>
<button onclick="openPlay(), disableMute()">Aceito</button>
</div>
<video id="myVideo" width="100%" muted>
<source src="./vid/netflix-animation.mp4" type="video/mp4">
Seu navegador não suporta a tag de vídeo.
</video>
</div>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>