diff --git a/xml.html b/xml.html index 8c302f0..63b6c08 100644 --- a/xml.html +++ b/xml.html @@ -155,10 +155,9 @@ mark{display:inline}

You can also use an xmlns:prefix declaration to define a namespace and associate it with a prefix. Then each element in that namespace must be explicitly declared with the prefix. -

<atom:feed xmlns:atom="http://www.w3.org/2005/Atom">  
+
<atom:feed xmlns:atom="http://www.w3.org/2005/Atom">  
   <atom:title>dive into mark</atom:title>             
-</atom:feed>
-
+</atom:feed>
  1. The feed element is in the http://www.w3.org/2005/Atom namespace.
  2. The title element is also in the http://www.w3.org/2005/Atom namespace.