[
Lists Home |
Date Index |
Thread Index
]
- From: "C. Field" <cgfield@email.msn.com>
- To: "XML-Dev Mailing list" <xml-dev@ic.ac.uk>
- Date: Sun, 12 Sep 1999 12:21:11 -0400
I have just read a few books over the weekend and I am very new to this. I
was wondering if someone could please help me out on two basic questions.
How do you get links to work in XML, and how about line breaks or spacing in
content. I use style sheets, but I only see DIV or blocks to break up units
of content. I want to actually have breaks in my content located in the xml
document. Below is my simple document. Can anybody help me out? Thanks in
advance, and sorry for the simplicity of this question, but I am just
getting started.
C.Field
<?xml:stylesheet type="text/css" href="instr.css">
<?xml version="1.0" standalone="no"?>
<!DOCTYPE InternetClass [
<!ELEMENT InternetClass (title, section+)>
<!ELEMENT SECTION (topic,example,code+,sites+)>
<!ATTLIST SECTION area CDATA #IMPLIED>
<!ELEMENT TITLE (#PCDATA)>
<!ELEMENT TOPIC (#PCDATA)>
<!ELEMENT EXAMPLE (#PCDATA)>
<!ATTLIST EXAMPLE number CDATA #REQUIRED>
<!ELEMENT SITES (#PCDATA)>
]>
<InternetClass>
<TITLE>Advanced Internet Class</TITLE>
<SECTION area="javascript">
<TOPIC>Javascript</TOPIC>
<EXAMPLE>Book</EXAMPLE>
<CODE>
javascript(windows){
x = other stuff
}
</CODE>
</SECTION>
<SECTION area="xmlStuff">
<TOPIC>XML</TOPIC>
<EXAMPLE>Book</EXAMPLE>
<SITES>http://www.xml.com/xml/pub/tools/ruwf/check.html</SITES>
<SITES>http://www.networking.ibm.com/xml/XmlValidatorForm.html</SITES>
</SECTION>
</InternetClass>
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|