The separation of data from its formatting
is an important idea.
At the same time, this looks like two steps back from my present
Dreamweaver approach. Now I need to learn about both XML and
CSS. One immediate concern is whether there are authoring packages
for actually using this (does Dreamweaver give me a good interface
for XML?)
There is an example of the markup for an RTF file - it is
horrific!
The statement that HTML is very limited is motivating, not
discouraging. It is time to learn more about utilizing the
Web.
It is time to visit the W3C home page. http://www.w3.org/
Here are the first few lines from the source code for the
W3C home page:
<?xml version="1.0" encoding="UTF-8"?>
<
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
I am not too sure about the use of the ? yet, but I think
it has something to do with "processing". Similarly, the next
tag that begins with a ! is, I think, a comment tag. Hopefully
I will be on top of this shortly.
Super. I now understand the first line of any XML file.
I have just found the information on page 5 for downloading
the XML code files from the publisher. This worked fine. I
have opened the first three files for chapter 1 and they are
helpful simple examples of XML files.
Okay I must now learn about the two ways of specifying the
XML syntax rules that my file will adhere to. The first of
these two ways is called a DTD, a Document Type Definition. |