forked from codigofalado/obs-countdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.05 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
<!DOCTYPE html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8" />
<title>Meu Countdown</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/main.css" />
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<section id="app">
<div class="content">
<h1>
O live coding está começando!
</h1>
<h2>
🎥 Hoje: Criando um Timer com Vue.js + Novos MEMEs no Canal
</h2>
<h3>
#Hashtag no Chat vira GIF na Live!
</h3>
<!-- Clock -->
<!-- /Clock -->
<p>
Enquanto você espera, <strong>apresente-se</strong> no chat,
<strong>pergunte</strong> o que quiser e tente
<strong>responder</strong> as perguntas dos amigos!
</p>
</div>
</section>
<script src="js/main.js"></script>
</body>
</html>