-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCompleto_1.html
More file actions
77 lines (74 loc) · 3.26 KB
/
Completo_1.html
File metadata and controls
77 lines (74 loc) · 3.26 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
<!DOCTYPE hmtl>
<hmtl lan="en">
<head>
<meta name="author" content="MarcoAntonio">
<style>
fieldset {background: lightyellow; border:10px solid yellow; margin-bottom:10px; width:720px;}
label {width:180px; display:inline-block; text-align:right; vertical-align:text-top;}
input[type="radio"] + label,
input[type="checkbox"] + label {width: auto;}
textarea {width: 360px; height: 50px;}
.lir {text-align:center; background: red; display:inline-block; width:80px;}
.lir2 {text-align:center; background: purple; display:inline-block; width:80px;}
label:hover {font-size:20px;}
input:hover {font-size:20px;}
</style>
</head>
<body>
<h1>Please Enter Your Details For Our Dating Website!</h1><br>
<form action="http://ihome.ust.hk/~rossiter/cgi-bin/show_everything.php">
<fieldset>
<legend>Your Face</legend>
<label for="image">Your image:</label>
<input type="file" name="image" id="image" required><br>
<label for="preview">Image preview:</label>
<img src="preview" id="preview">
</fieldset>
<fieldset>
<legend>Your General Details</legend>
<label for="fullname">Name:</label>
<input type="text" name="fullname" id="fullname" placeholder="Your full name" required><br>
<label for="Gender">Gender:</label>
<input type="radio" name="Gender" id="Gender" value="Male" required>Male
<input type="radio" name="Gender" id="Gender" value="Female" required>Female<br>
<label for="Age">Age:</label>
<input type="number" name="Age" id="Age" min="0" required><br>
<label for="Date">Date of birth:</label>
<input type="date" name="Date" id="Date"><br>
<label for="Color">Favorite color:</label>
<input type="color" name="Color" id="Color"><br>
<label for="Country">Which country:</label>
<select name="Country" id="Country">
<option value="Brazil">Brazil</option>
<option value="United States">United States</option>
<option value="South Africa">South Africa</option>
<option value="England">England</option>
<option value="Japan">Japan</option>
<option value="No selection">No selection</option>
</select>
</fieldset>
<fieldset>
<legend>Your Indicators</legend>
<label for="Height">Height:</label>
<span class="lir">Short</span><input type="range" min="0" max="100" name="Height" id="Height" value="50"><span class="lir2">Tall</span><br>
<label for="Salary">Salary:</label>
<span class="lir">Poor</span><input type="range" min="0" max="100" name="Salary" id="Salary" value="50"><span class="lir2">Rich</span><br>
</fieldset>
<fieldset>
<legend>Your Contact Information</legend>
<label for="Email">Email:</label>
<input type="email" name="Email" id="Email" required><br>
<label for="Number">Mobile:</label>
<input type="tel" name="Number" id="Number"><br>
<label for="Address">Address:</label>
<input type="text" name="Address" id="Address"><br>
<label for="Contact" class="lbcr">Method to contact you:</label>
<input type="checkbox" name="Contact" id="Contact" value="Email">Email
<input type="checkbox" name="Contact" id="Contact" value="Whatsapp">Whatsapp
<input type="checkbox" name="Contact" id="Contact" value="In-app chat">In-app chat<br>
</fieldset>
<input type="submit" value="Submit">
</form>
<script src="https://www.cse.ust.hk/~rossiter/dating_web_site.js"></script>
</body>
</hmtl>