-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (74 loc) · 3.29 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;500&family=Open+Sans:wght@600&display=swap"
rel="stylesheet">
<link href="styles.css" rel="stylesheet" type="text/css" />
<title>The ultimate ski adventure</title>
</head>
<body>
<div class="container">
<form class="left" action="" method="get">
<h2 class="register">Register for the ultimate ski adventure</h2>
<h3 class="basic-info">Your basic info</h3>
<section class="your-basic-info">
<div class="enter-name">
<label for="name">Name and surname <span class="red-mark">*</span></label>
<input type="text" name="name" id="name" required class="name">
</div>
<div class="enter-email">
<label for="email">Email <span class="red-mark">*</span></label>
<input type="email" name="email" id="email" required class="email" placeholder="[email protected]">
</div>
<div class="enter-password">
<label for="password">Password <span class="red-mark">*</span></label>
<input type="password" name="password" id="password" required class="password" placeholder="****">
</div>
</section>
<fieldset class="fieldset">
<legend class="age">Age</legend>
<label>
<input type="radio" name="radio" class="radio" />
Under 18
</label>
<label>
<input type="radio" name="radio" class="radio" />
18 and over
</label>
</fieldset>
<h3 class="tell-us">Tell us about yourself</h3>
<label for="textbox" class="bio-title">Your biography</label><br>
<textarea name="textbox" id="textbox" rows="4" cols="50" class="bio"> </textarea>
<label class="select-location">Select location</label>
<label>
<select class="location">
<option value="actual value 1">Mayrhofen</option>
<option value="actual value 2">Valle De Sair</option>
<option value="actual value 3">Alps</option>
</select>
</label>
<fieldset class="rent">
<legend class="equipment">What equipment would you like to rent?</legend>
<label><input type="checkbox" name="skis"> Skis</label>
<label><input type="checkbox" name="helmet"> Helmet</label>
<label><input type="checkbox" name="goggles"> Goggles</label>
<label><input type="checkbox" name="ski-boots"> Ski boots</label>
<label><input type="checkbox" name="ski-poles"> Ski poles</label>
</fieldset>
<div class = "buttons">
<button class="reset">Reset</button>
<button class="submit">Submit</button>
</div>
</form>
<!-- </div> -->
<div class="right">
<h1 class="epic">Epic experience<br>in the snow</h1>
<!-- <img src="/assets/ski.jpeg" class="container"> -->
</div>
</div>
</body>
</html>