⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 guac1.xml

📁 python web programming 部分
💻 XML
字号:
<?xml version="1.0" encoding="iso-8859-1"?>

    <!DOCTYPE recipe [
    <!-- The RECIPE DTD appears here -->
       <!ELEMENT recipe (title, description?, ingredients, directions)>
       <!ELEMENT ingredients (item+)>
       <!ELEMENT title (#PCDATA)>
       <!ELEMENT description (#PCDATA)>
       <!ELEMENT item (#PCDATA)>
       <!ELEMENT directions (#PCDATA)>
       <!ATTLIST item num    CDATA    #REQUIRED
                      units  (C | tsp | tbl | bottles | none)  "none">
    ]>
    <!-- End of DTD -->

<?xml-stylesheet href="mystyle.css" type="text/css"?>



<recipe>
   <description>
   A southwest favorite!
   &photo;
   </description>

   <title> Famous Guacamole </title>
   <ingredients>
        <item num="4"> Large avocados, chopped </item>
        <item num="1"> Tomato, chopped </item>
        <item num="1/2" units="C"> White onion, chopped </item>
        <item num="2" units="tbl"> Fresh squeezed lemon juice </item>
        <item num="1"> Jalape&#241;o pepper, diced </item>
        <item num="1" units="tbl"> Fresh cilantro, minced </item>
        <item num="1" units="tbl"> Garlic, minced </item>
        <item num="3" units="tsp"> Salt </item>
        <item quantity="12" units="bottles"> Ice-cold beer </item>
   </ingredients>
   <directions>
   Combine all ingredients and hand whisk to desired consistency.  
   Serve and enjoy with ice-cold beers.
   </directions>
</recipe>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -