-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions_example.html
28 lines (28 loc) · 1.78 KB
/
options_example.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
<select name="asignatura">
<option value="" selected="selected">-- Select subject --</option>
<optgroup label="Computer Engineering-Computer Systems Engineering">
<option value="2040004">2040004 - Physical Foundations of Computing (Second semester - 6 credits)</option>
<option value="2040007">2040007 - Infinitesimal and Numerical Calculus (Second semester - 6 credits)</option>
<!-- Add more options as needed -->
</optgroup>
<optgroup label="Computer Engineering-Software Engineering">
<option value="2050006">2050006 - Business Administration (Second semester - 6 credits)</option>
<option value="2050008">2050008 - Statistics (Second semester - 6 credits)</option>
<!-- Add more options as needed -->
</optgroup>
<optgroup label="Computer Engineering-Information Technologies">
<option value="2060002">2060002 - Business Administration (Second semester - 6 credits)</option>
<option value="2060007">2060007 - Statistics (Second semester - 6 credits)</option>
<!-- Add more options as needed -->
</optgroup>
<optgroup label="Health Engineering by the University of Malaga and the University of Seville">
<option value="2260002">2260002 - Advanced Calculus (Second semester - 6 credits)</option>
<option value="2260007">2260007 - Statistics (Second semester - 6 credits)</option>
<!-- Add more options as needed -->
</optgroup>
<optgroup label="Double Degree in Computer Engineering and Mathematics">
<option value="2470001">2470001 - Business Administration (Second semester - 6 credits)</option>
<option value="2470007">2470007 - Computer Systems Structure (Second semester - 6 credits)</option>
<!-- Add more options as needed -->
</optgroup>
</select>