-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmusical_events.html
executable file
·98 lines (91 loc) · 2.61 KB
/
musical_events.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>
Musical Events
</title>
<style>
body {
background-color: white;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
table {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
}
td{
border: 1px solid #ddd;
padding: 5px;
}
tr:nth-child(even){background-color: #f2f2f2;}
tr:hover {background-color: #ddd;}
th {
background-color: #33FFD4;
border: 1px solid #ddd;
padding: 5px;
}
img {
height:24px
}
</style>
</head>
<body>
<p id = "p_bands">
<table>
<tr>
<th>Bands</th>
<th>Contries</th>
<th>Genres</th>
<th>Events</th>
</tr>
<tr>
<td>
<button onclick="showAllBands()">All Bands</button>
</td>
<td>
<button id="allContries" onClick = "showAllCountries()">All Countries</button>
</td>
<td>
<button id="allGenres" onClick = "showAllGenres()">All Genres</button>
</td>
<td>
<button id="allEvents" onClick = "showAllEvents()">All Events</button>
</td>
</tr>
<tr>
<td>
<select id="selectBandId" name = "selectBandName" onChange = "showBand()"></select>
</td>
<td>
<select id="selectCountryId" name = "selectCountryName" onChange = "showBandByCountry()"></select>
</td>
<td>
<select id="selectGenreId" name = "selectGenreName" onChange = "showBandByGenre()"></select>
</td>
<td>
<select id="selectEventId" name = "selectEventName" onChange = "showBandByEvent()"></select>
</td>
</tr>
</table>
</p>
<p id = "allInfo"></p>
<p id="bands_info"></p>
<p id="genres_events"></p>
<script src="js/jsonBands.js"></script>
<script src="js/jsonGenres.js"></script>
<script src="js/jsonCountries.js"></script>
<script src="js/jsonEvents.js"></script>
<script src="js/jsonBandsGenres.js"></script>
<script src="js/jsonBandsCountries.js"></script>
<script src="js/jsonBandsEvents.js"></script>
<script src="js/functions_to_load_data.js"></script>
<script src="js/make_forms.js"></script>
<script src="js/function_to_clear_data.js"></script>
<script src="js/functions_to_show_all_entities.js"></script>
<script src="js/function_to_show_band.js"></script>
<script src="js/functions_to_show_bands_by_entities.js"></script>
<script src="js/function_show_bands_on_tables.js"></script>
<script src="js/functions_to_show_entities_of_band.js"></script>
</body>
</html>