-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (28 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<title>FormSite</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body class="homepage">
<div class="container">
<div class="centeredpanel">
<div class="detail">
<input type="button" class="button pressed next" value="next" id="bt" onclick="run();">
</div>
<h1>Pesquisa sobre linguagens Front-end</h1>
<div class="content">
<div class="pergunta">
<h3>Nome Completo:<span class="aste">*</span></h3> <br />
<input type="textarea" id="nametxt" placeholder="Seu nome" class="resp">
</div>
<div class="pergunta">
<h3>O que você acha sobre as linguagens de programação Front-end?</h3> <br />
<input type="textarea" id="opentxt" placeholder="Sua resposta" class="resp inftext">
</div>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="functions.js"></script>
</html>