-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
98 lines (86 loc) · 1.58 KB
/
Copy pathfaq.html
File metadata and controls
98 lines (86 loc) · 1.58 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<title>Perguntas Frequentes - Empresa</title>
<meta charset="utf-8" />
<link
rel="stylesheet"
href="css/style.css"
/>
<link
href="https://fonts.googleapis.com/css?family=Montserrat:100,400"
rel="stylesheet"
/>
<script
type="text/javascript"
src="js/scripts.js"
></script>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
</head>
<body>
<div
id="navigation"
class="navigation"
>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="produtos.html">Produtos</a></li>
<li>
<a
href="#"
style="color: #7feb9b"
>
Perguntas Frequentes
</a>
</li>
<li><a href="sobremim.html">Quem sou?</a></li>
<li><a href="contato.html">Contato</a></li>
<li
id="threeline-icon"
class="threeline-icon"
onclick="openNav()"
>
☰
</li>
</ul>
</div>
<div class="main">
<h1>Perguntas Frequentes</h1>
<div class="script">
<ul>
<br />
<br />
<br />
<h1>Pergunta 1:</h1>
<p>Resposta 1</p>
<h1>Pergunta 2:</h1>
<p>Resposta 2</p>
<h1>Pergunta 3:</h1>
<p>Resposta 3</p>
<br />
<br />
<br />
</ul>
</div>
<!--script-->
<div class="novapergunta">
<h2>Sua dúvida não está aí?</h2>
<textarea placeholder="Digite aqui sua dúvida."></textarea>
<br />
<input
type="submit"
name="acao"
value="Enviar"
/>
</div>
<!--novapergunta-->
<br />
<br />
<br />
</div>
<!--main-->
</body>
</html>