Writing Non-Empty Elements : Well Formed « Introduction « XML Tutorial

XML Tutorial
1. Introduction
2. Namespace
3. XML Schema
4. XPath
5. XSLT stylesheet
Java
XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
XML Tutorial » Introduction » Well Formed 
1. 3. 4. Writing Non-Empty Elements
A simple XML element comprises an opening tag, content, and a closing tag whose only difference with the opening tag is an initial forward slash. 
<animal>
    <animal>T1</animal>
</animal>
  
The closing tag is not optional.
The rules for naming regular elements: case matters; names must begin with a letter, underscore or colon; names may contain letters, digits, underscores, hyphens, periods, and colons; colons are generally only used for specifying namespaces; and names that begin with the letters x, m, and l (in any combination of upper-and lowercaseare reserved by the W3C.
Names need not be in English or even the Latin alphabet.
You define which tags are allowed in an XML document by using a schema.
1. 3. Well Formed
1. 3. 1. XML documents must adhere to certain rules to be well formed.
1. 3. 2. XML Naming Conventions
1. 3. 3. Case Sensitivity
1. 3. 4. Writing Non-Empty Elements
1. 3. 5. Nesting Elements
1. 3. 6. Empty Elements
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.