<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE institut [
    <!ELEMENT institut (nom, codi, any-academic, curs+)>
    <!ELEMENT nom (#PCDATA)>
    <!ELEMENT codi (#PCDATA)>
    <!ELEMENT any-academic (#PCDATA)>
    <!ELEMENT curs (assignatures, alumnes)>
    <!ATTLIST curs
        id ID #REQUIRED
        nom CDATA #REQUIRED
    >
    <!ELEMENT assignatures (assignatura+)>
    <!ELEMENT assignatura (nom, hores)>
    <!ATTLIST assignatura codi ID #REQUIRED>
    <!ELEMENT hores (#PCDATA)>
    <!ELEMENT alumnes (alumne+)>
    <!ELEMENT alumne (nom, cognoms, data-naixement, email)>
    <!ATTLIST alumne id ID #REQUIRED>
    <!ELEMENT cognoms (#PCDATA)>
    <!ELEMENT data-naixement (#PCDATA)>
    <!ELEMENT email (#PCDATA)>
]>
<institut>
    <nom>CIFP Francesc de Borja Moll</nom>
    <codi>08012345</codi>
    <any-academic>2025-26</any-academic>
    
    <curs id="ASIX" nom="Administració de Sistemes Informàtics en Xarxa">
        <assignatures>
            <assignatura codi="LLM">
                <nom>Llenguatges de Marques i Sistemes de Gestió d'Informació</nom>
                <hores>128</hores>
            </assignatura>
            <assignatura codi="FP">
                <nom>Fonaments de Programació</nom>
                <hores>66</hores>
            </assignatura>
            <assignatura codi="ASO">
                <nom>Administració de Sistemes Operatius</nom>
                <hores>126</hores>
            </assignatura>
        </assignatures>
        
        <alumnes>
            <alumne id="A001">
                <nom>Maria</nom>
                <cognoms>García López</cognoms>
                <data-naixement>2005-03-15</data-naixement>
                <email>maria.garcia@cifpfbmoll.eu</email>
            </alumne>
            <alumne id="A002">
                <nom>Pere</nom>
                <cognoms>Martínez Soler</cognoms>
                <data-naixement>2004-07-22</data-naixement>
                <email>pere.martinez@cifpfbmoll.eu</email>
            </alumne>
            <alumne id="A003">
                <nom>Laura</nom>
                <cognoms>Vidal Mas</cognoms>
                <data-naixement>2005-01-08</data-naixement>
                <email>laura.vidal@cifpfbmoll.eu</email>
            </alumne>
            <alumne id="A004">
                <nom>Jordi</nom>
                <cognoms>Pons Ferrer</cognoms>
                <data-naixement>2004-11-30</data-naixement>
                <email>jordi.pons@cifpfbmoll.eu</email>
            </alumne>
            <alumne id="A005">
                <nom>Anna</nom>
                <cognoms>Serra Riera</cognoms>
                <data-naixement>2005-06-12</data-naixement>
                <email>anna.serra@cifpfbmoll.eu</email>
            </alumne>
            <alumne id="A006">
                <nom>Marc</nom>
                <cognoms>Oliver Tous</cognoms>
                <data-naixement>2004-09-03</data-naixement>
                <email>marc.oliver@cifpfbmoll.eu</email>
            </alumne>
            <alumne id="A007">
                <nom>Carla</nom>
                <cognoms>Munar Cifre</cognoms>
                <data-naixement>2005-04-25</data-naixement>
                <email>carla.munar@cifpfbmoll.eu</email>
            </alumne>
            <alumne id="A008">
                <nom>Tomeu</nom>
                <cognoms>Amengual Reus</cognoms>
                <data-naixement>2004-12-18</data-naixement>
                <email>tomeu.amengual@cifpfbmoll.eu</email>
            </alumne>
            <alumne id="A009">
                <nom>Aina</nom>
                <cognoms>Crespí Bonnín</cognoms>
                <data-naixement>2005-08-07</data-naixement>
                <email>aina.crespi@cifpfbmoll.eu</email>
            </alumne>
            <alumne id="A010">
                <nom>Miquel</nom>
                <cognoms>Fiol Pascual</cognoms>
                <data-naixement>2004-05-14</data-naixement>
                <email>miquel.fiol@cifpfbmoll.eu</email>
            </alumne>
        </alumnes>
    </curs>
</institut>
