-
Notifications
You must be signed in to change notification settings - Fork 0
/
subpage1.html
56 lines (33 loc) · 1.5 KB
/
subpage1.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
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>FormSite</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body class="subpage1">
<div class="container">
<div class="centeredpanel">
<div class="detail">
<input type="button" class="button pressed back" value="back" id="bt" onclick="run2part(); window.location.href = 'index.html';">
<input type="button" class="button pressed next" value="next" id="bt" onclick="run2(); window.location.href = 'subpage2.html';">
</div>
<div class="content">
<div class="pergunta">
<h3>Você sabe programar algum tipo de linguagem Front-end?<span class="aste">*</span></h3> <br />
<form id="opt">
<input type="radio" id="respradio" name="son" value="sim" onclick="run2();"> Sim
<br />
<input type="radio" id="respradio" name="son" value="não" onclick="run2();"> Não
</form>
</div>
<div class="pergunta">
<h3> <span id="vari"> </span> <br />
<input type="hidden" id="opt1" placeholder="Sua resposta" class="resp inftext">
</h3>
</div>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="functions.js"></script>
</html>