-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (30 loc) · 1.11 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
<html><head>
<meta charset="UTF-8">
<title>Face Mask Detector</title>
<script src="ml5.min.js" type="text/javascript"></script>
<script defer src="script.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-R8R744QS7E"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-R8R744QS7E');
</script>
</head>
<body>
<video id="video" width="300" height="400" autoplay muted playsinline></video>
<h1 id="alerta" class="text-center"></h1>
<div id="overlay">
<div class="container">
<div class="row">
<div class="text-center vertical-center md-12">
<h2>carregando...</h2>
</div>
</div>
</div>
</div>
</body>
</html>