-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (90 loc) · 3.26 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
93
94
95
96
97
<!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">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Karla" rel="stylesheet">
<title>Ready, Set, Go</title>
</head>
<body>
<h1>Sorting out projects</h1>
<form action="./index.html" method="get">
<div class="project-number">
<div class="project-numer-heading">Project number</div>
<input type="text" name="Nombre de proyecto" id="">
</div>
<div class="deadline">
<div class="start">Deadline</div>
<input type="date" id="start" name="trip-start" value="" min="2019-05-01" max="2030-12-31">
</div>
<div class="languages-amount">
<div class="how-many-languages">How many languages?</div>
<label for="one">
<input type="radio" name="lngAmt" id="one">
Just One
</label>
<label for="two-five">
<input type="radio" name="lngAmt" id="two-five">
Two to Five
</label>
<label for="six-ten">
<input type="radio" name="lngAmt" id="six-ten">
Six to Ten
</label>
<label for="more-than-ten">
<input type="radio" name="lngAmt" id="more-than-ten">
More than ten
</label>
</div>
<div class="languages-selection">
<div class="which-lang">Which languages?</div>
<label for="ES">
<input type="checkbox" name="ES" value="ES" id="ES">
Spanish
</label>
<label for="PT">
<input type="checkbox" name="PT" value="PT" id="PT">
Portuguese
</label>
<label for="FR">
<input type="checkbox" name="FR" value="FR" id="FR">
French
</label>
<label for="DE">
<input type="checkbox" name="DE" value="DE" id="DE">
German
</label>
<label for="Artur">
<input type="checkbox" name="Artur" value="Artur" id="Artur">
Artur's languages
</label>
<label for="ZH">
<input type="checkbox" name="ZH" value="ZH" id="ZH">
Chinese
</label>
<label for="JA">
<input type="checkbox" name="JA" value="JA" id="JA">
Japanese
</label>
<label for="Other">
<input type="checkbox" name="other" value="other" id="other">
Other languages
</label>
</div>
<div class="btn">
<button id="open-modal-button" type="submit">Show me the money!</button>
</div>
</form>
<div id="modal-container" class="modal-container">
<div class="modal-content">
<span id="closeBtn" class="closeBtn">×</span>
<div class="modal-img">
<img src="" alt="#">
</div>
</div>
</div>
<script src="functions.js"></script>
</body>
</html>