-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (48 loc) · 2.56 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
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon-32x32.png">
<link rel="stylesheet" href="./assets/css/reset.css">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/responsivo.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@600;800&display=swap" rel="stylesheet">
<title>Frontend Mentor | Componente interativo de preço</title>
<body>
<section class="conteudo">
<h1 class="conteudo__titulo">Preço simples, baseado no tráfego</h1>
<p class="conteudo__paragrafo">Cadastre-se em nosso teste de 30 dias, sem precisar informar seu cartão de crédito.</p>
</section>
<section class="componente">
<div class="componente__valores">
<span class="componente__valores-pagina"><span id="views">100K </span>VISUALIZAÇÕES DE PÁGINA</span>
<span><span class="componente__valores-preco"><span>R$ </span><span id="preco">16.00</span></span><span class="componente__valores-mes" id="duracao">/mês</span></span>
</div>
<input type="range" id="slider" min="1" max="5" value="3" step="1" class="componente__slider">
<div class="componente__plano">
<span class="componente__plano-mensal">Mensal</span>
<label class="componente__plano-checkbox" id="switch" for="checkbox">
<input type="checkbox" id="checkbox">
<span class="componente__plano-checkbox-switch"></span>
</label>
<span class="componente__plano-anual">Anual</span>
<span class="componente__plano-desconto">25% de desconto</span>
</div>
<hr class="border">
<div class="componente__rodape">
<div class="componente__rodape-beneficios">
<ul>
<li class="componente__rodape-beneficios-sites">Sites ilimitados</li>
<li class="componente__rodape-beneficios-dados">100% da propriedade dos dados</li>
<li class="componente__rodape-beneficios-email">Relatórios de email</li>
</ul>
</div>
<input class="componente__rodape-botao" type="submit" value="Começar meu teste">
</div>
</section>
<script src="./js/app.js"></script>
</body>
</html>