1<resorts> 2 <resort> 3 <name>Amsterdam</name> 4 <details>A wordy description of Amsterdam</details> 5 <hotel> 6 <name>Grand Hotel</name> 7 <stars>5</stars> 8 <address> . . . </address> 9 </hotel> 10 <hotel> 11 <name>Less Grand Hotel</name> 12 <stars>2</stars> 13 <address> . . . </address> 14 </hotel> 15 </resort> 16 <resort> 17 <name>Bruges</name> 18 <details>An eloquent description of Bruges</details> 19 <hotel> 20 <name>Central Hotel</name> 21 <stars>5</stars> 22 <address> . . . </address> 23 </hotel> 24 <hotel> 25 <name>Peripheral Hotel</name> 26 <stars>2</stars> 27 <address> . . . </address> 28 </hotel> 29 </resort> 30</resorts> 31 32