-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTickets.html
140 lines (127 loc) · 4.59 KB
/
Tickets.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
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
<head>
<title>Kersouwe Home</title>
<body style="background-color:#B9F2BA;">
<style>
#menu {
height: 75px;
padding: 20px;
font-size: 2REM;
border: solid 5px #09090A;
background-color: #146814;
}
#menu:hover {
background-color: #03FD08;
}
a {
color: #F9F9FC;
}
#titel1 {
background-color:#146814;
padding: 30px;
font-size: 3REM;
width:95%;
text-align: center;
border: solid 5px #040404;
}
#titel1 {
text-align: center;
}
#list1 {
text-align: left;
color: #791A78;
}
#info1 {
text-align: center;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #020202 ;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #B9F2BA;
}
</style>
</head>
<body>
<div id="title" >
<a id="menu" href="file:///media/fuse/drivefs-129980cb6ce9c088ab4919ea55728b6a/root/Kersouwe%20home.html">Home</a>
<a id="menu" href="file:///media/fuse/drivefs-129980cb6ce9c088ab4919ea55728b6a/root/jeugd%20kers.html">Jeugd Productie</a>
<a id="menu" href="">Tickets</a>
<a id="menu" href="file:///media/fuse/drivefs-129980cb6ce9c088ab4919ea55728b6a/root/Overige%20Voorstellingen.html">Overige Voorstellingen</a>
</div>
<h2 id=titel1>Tickets Kopen</h2>
<p>Wij hebben hier een aantal optie. Dit zijn de opties voor soorten kaartjes.
<table>
<tr>
<th>Soort Voorstelling</th>
<th>Soort Tickets</th>
<th>Hoe duur</th>
</tr>
<tr>
<td>Jeugd Productie</td>
<td>Volwassen</td>
<td>€5-</td>
</tr>
<tr>
<td>Jeugd Productie</td>
<td>Tiener</td>
<td>€5-</td>
</tr>
<tr>
<td>Jeugd Productie</td>
<td>Kids</td>
<td>€5-</td>
</tr>
<tr>
<td>Jeugd Productie</td>
<td>Senior</td>
<td>€5-</td>
</tr>
<tr>
<td>Overige Producties</td>
<td>Alle Leeftijden</td>
<td>€15-</td>
</tr>
</table>
<p>Kaartjes Kopen</p>
<form action="/action_page.php">
<label for="prod">Kies je Productie:</label>
<select name="prod" id="prod">
<option value="jeugd">Jeugd Productie</option>
<option value="maan">Maan</option>
<option value="senf">Susan en Freek</option>
<option value="idl">Ilse de Lange</option>
</select>
<form action="/action_page.php">
<label for="soort">Kies je soort Kaartjes:</label>
<select name="kaart" id="kaart">
<option value="volvo">Volwassen</option>
<option value="saab">Kind</option>
<option value="opel">Tiener</option>
<option value="audi">Senior</option>
</select>
<form action="/action_page.php">
<label for="aantal">Aantal Kaartjes</label>
<select name="aantal" id="aantal">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<p>Wilt u deze aankoop maken</p>
<div>
<button onclick="alert('Wat fijn! Natuurlijk heeft u niet een echte kaartje(s) gekocht maar als je intresse hebt ga dan naar kersouwe.nl!')">Ja</button> <button onclick="alert('Jammer. :-[')">Nee</button>
</div>
<p>😀</p>
<meta charset="UTF-8">
</body>
</html>