-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss-trigger.html
44 lines (44 loc) · 1.8 KB
/
css-trigger.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<title>CSS Trigger</title>
</head>
<body>
<div class="trigger-container">
<h1 class="title">Perguntas Frequentes</h1>
<div class="questions">
<input type="checkbox" class="trigger-input" id="question-1">
<div class="trigger-question">
<label for="question-1" class="trigger-active">
<h2>Como utilizar o sistema?</h2>
</label>
<p>É fácil, tendo seu usuário e senha é possível ter acesso a diversas ferramentas importantes para o seu negócio.</p>
</div>
</div>
<div class="questions">
<input type="checkbox" class="trigger-input" id="question-2">
<div class="trigger-question">
<label for="question-2" class="trigger-active">
<h2>Eu consigo fazer Backup dos meus arquivos?</h2>
</label>
<p>Claro, é super fácil e rápido, basta acessar as configurações da sua conta e acessar a opção "Download dos dados". </p>
</div>
</div>
<div class="questions">
<input type="checkbox" class="trigger-input" id="question-3">
<div class="trigger-question">
<label for="question-3" class="trigger-active">
<h2>Qual o telefone de suporte para ter acesso a ajuda do Software? </h2>
</label>
<p>Basta entrar em contato pelo número (99) 9999-9999 ou encaminhar um e-mail para [email protected]. Teremos o prazer em atendê-lo e ajudar no que for preciso.</p>
</div>
</div>
</div>
</body>
</html>