-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsection-contato.html
35 lines (35 loc) · 1.28 KB
/
section-contato.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
<div class="block-ch-lh-o">
<h2 class="section-title">Contato</h2>
<h3 class="title-1">Fale Conosco</h3>
<h3 class="title-2">Mande sua Mensagem</h3>
<form class="items abh2-form">
<div class="item col-50">
<label for="nome">Nome</label>
<input type="text" name="nome" id="nome"/>
</div>
<div class="item col-50">
<label for="email">Email</label>
<input type="text" name="email" id="email"/>
</div>
<div class="item col-50">
<label for="telefone">Telefone</label>
<input type="text" name="telefone" id="telefone"/>
</div>
<div class="item col-50">
<label for="assunto">Assunto</label>
<select name="assunto" id="assunto">
<option>Selecione o assunto</option>
<option>Assunto 1</option>
<option>Assunto 2</option>
</select>
</div>
<div class="item">
<label for="mensagem">Mensagem</label>
<textarea name="mensagem" id="mensagem"></textarea>
</div>
<div class="item">
<span class="info">* Todos os Campos são obrigatórios</span>
<input type="submit" value="Enviar" />
</div>
</form>
</div>