Consider the XML DTD definition below. Write a well-formed and
valid XML Document that conforms to this definition.
<!ELEMENT wine-catalog
(wine+)>
<!ELEMENT wine
(properties,origin,price,year,tasting-note?)>
<!ATTLIST wine
code ID
#REQUIRED
name #PCDATA #REQUIRED
classification #PCDATA
#REQUIRED
format (375ml|750ml) “750ml”>
<!ELEMENT properties
(color,alcohol-content)>
<!ELEMENT color (#PCDATA)>
<!ELEMENT alcohol-content
(#PCDATA)>
<!ELEMENT origin (country, region,
producer)>
<!ELEMENT country (#PCDATA)>
<!ELEMENT region (#PCDATA)>
<!ELEMENT producer
(#PCDATA)>
<!ELEMENT price (#PCDATA)>
<!ELEMENT year (#PCDATA)>
<!ELEMENT tasting-note
(#PCDATA)>