-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex5.html
133 lines (106 loc) · 3.63 KB
/
ex5.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<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">
<title>Ex3</title>
</head>
<style>
#info label {
display: inline-block;
clear: left;
width: 20%;
}
#info input,
select {
display: inline-block;
margin-bottom: 12px;
}
#info input {
width: 75%;
}
#info select {
width: 76%;
}
#transporte,
#cor {
width: 46%;
}
#transporte {
float: left;
}
#cor {
float: right;
}
body {
width: 70%;
margin: auto;
}
.clearfix {
overflow: auto;
}
#control-panel {
padding-top: 2em;
text-align: center;
}
#control-panel input{
font-size: 15px;
}
textarea {
width: 100%
}
</style>
<body>
<form name="PersonData" action="http://192.168.160.36/FormEcho.aspx" method="POST">
<fieldset id="info">
<legend>Informação Pessoal</legend>
<label>Curso:</label>
<select name="Curso">
<option value="1">Licenciatura em Engenharia Informática</option>
<option value="2">Mestrado Integrado em Engenharia de Computadores e Telemática</option>
<option value="3">Mestrado Integrade em Engenharia Eletrónica e Telecomunincações</option>
</select><br>
<label for="Nome">Nome:</label>
<input type="text" name="FirstName" value="Joaquim" placeholder="Nome" /><br>
<label for="Sobrenome">Sobrenome: </label>
<input type="text" name="LastName" placeholder="Sobrenome" /><br>
<label for="password">Palavra-Passe: </label>
<input type="password" name="Password" placeholder="Digite a palavra-passe" /><br>
</fieldset>
<!--Comentários-->
<fieldset>
<legend>Comentários:</legend>
<textarea name="Comments" rows="4" cols="80" placeholder="Insira os seus comentários"></textarea>
</fieldset>
<!--linha-->
<div class="clearfix">
<fieldset id="transporte">
<legend>Meios de Transporte</legend>
<input type="checkbox" id="bicicleta" name="vehicle" value="Bicicleta">
<label for="Bicicleta">Bicicleta</label><br>
<input type="checkbox" id="Carro" name="vehicle" value="Carro">
<label for="Carro">Carro</label><br>
<input type="checkbox" id="Comboio" name="vehicle" value="Comboio">
<label for="Comboio">Comboio</label>
</fieldset>
<fieldset id="cor">
<legend>Cor Preferida</legend>
<input type="radio" id="azul" name="color" value="Azul">
<label for="azul">Azul</label><br>
<input type="radio" id="verde" name="color" value="Verde">
<label for="verde">Verde</label><br>
<input type="radio" id="vermelho" name="color" value="Vermelho">
<label for="vermelho">vermelho</label><br>
<input type="radio" id="outra" name="color" value="Outra">
<label for="outra">Outra</label>
</fieldset>
</div>
<div class="clearfix" id="control-panel">
<label for="submit"></label>
<input type="submit" name="Button" value="Enviar"/>
<label for="reset"></label>
<input type="reset" name="resetBtn">
</div>
</body>
</html>