XML이란 무엇입니까?


HTML

XML은 eXtensible Markup Language의 약자입니다.

XML은 다양한 IT 시스템에서 중요한 역할을 합니다.

XML은 종종 인터넷을 통해 데이터를 배포하는 데 사용됩니다.

모든 웹 개발자가 XML을 잘 이해하는 것이 중요합니다.


XML 예제 1

<?xml version="1.0" encoding="UTF-8"?>
<note>
  <to>Tove</to>
  <from>Jani</from>
  <heading>Reminder</heading>
  <body>Don't forget me this weekend!</body>
</note>

XML 파일 표시 » XML 파일을 메모로 표시 »

×

XML 예제 2

<?xml version="1.0" encoding="UTF-8"?>
<breakfast_menu>
<food>
    <name>Belgian Waffles</name>
    <price>$5.95</price>
    <description>
   Two of our famous Belgian Waffles with plenty of real maple syrup
   </description>
    <calories>650</calories>
</food>
<food>
    <name>Strawberry Belgian Waffles</name>
    <price>$7.95</price>
    <description>
    Light Belgian waffles covered with strawberries and whipped cream
    </description>
    <calories>900</calories>
</food>
<food>
    <name>Berry-Berry Belgian Waffles</name>
    <price>$8.95</price>
    <description>
    Belgian waffles covered with assorted fresh berries and whipped cream
    </description>
    <calories>900</calories>
</food>
<food>
    <name>French Toast</name>
    <price>$4.50</price>
    <description>
    Thick slices made from our homemade sourdough bread
    </description>
    <calories>600</calories>
</food>
<food>
    <name>Homestyle Breakfast</name>
    <price>$6.95</price>
    <description>
    Two eggs, bacon or sausage, toast, and our ever-popular hash browns
    </description>
    <calories>950</calories>
</food>
</breakfast_menu>

XML 파일 표시 » XML 파일 열기 » XSLT로 디스플레이 »

×

Header


전체 XML 튜토리얼

이것은 XML에 대한 짧은 소개였습니다.

전체 XML 자습서를 보려면 W3Schools XML 자습서로 이동하십시오 .