<< < 1 2 3 4 5 6 7 8 > >>   Sort: Date

What Happens If a META Element Is Not Closed
What Happens If a META Element Is Not Closed? - XHTML 1.0 Tutorials - Document Structure and Head Level Tags Meta tags, link tags and base tags must be closed in XHTML documents. If you forget to close them like the HTML format, you will get validation errors. Try the following tutorial sample XHTML...
2007-05-12, 5099👍, 0💬

How To Create Table Borders
How To Create Table Borders? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells There are two sets of borders within a table: Outer Borders - Borders that around the outer edges of the table. Inner Borders - Borders between table cells. If you want to create table outer borders and inner b...
2007-05-11, 5093👍, 0💬

What Does an XHTML Document Look Like
What Does an XHTML Document Look Like? - XHTML FAQs - Introduction To XHTML 1.0 An XHTML document is a normal text file with predefined tags mixed with the text contents of the document. Tags are enclosed in pairs of angle brackets: "&lt;" and "&gt;". Below is how a simple XHTML document wil...
2007-05-12, 5090👍, 0💬

What Is a DIV Tag/Element
What Is a DIV Tag/Element? - XHTML 1.0 Tutorials - Understanding DIV and SPAN elements A "div" element is a block element that you can use a container of flow elements (flow elements are really the superset of both inline elements and block elements). By default, "div" elements will be treated as pa...
2007-05-12, 5081👍, 0💬

Can DIV Elements Be Nested
Can DIV Elements Be Nested? - XHTML 1.0 Tutorials - Understanding DIV and SPAN elements Can "div" elements be nested? The answer is yes. In fact, nested "div" elements provides you more flexibilities to specify CSS properties at different levels. Here is a tutorial example of nested "div" elements: ...
2007-05-12, 5077👍, 0💬

What Happens If a Hyper Link Points to an Image
What Happens If a Hyper Link Points to an Image? - XHTML 1.0 Tutorials - Understanding Hyper Links and URLs If you want to build a hyper link to allow visitors to see an image by clicking a hyper link, you can put the URL of the image directly in the "href" attribute of the hyper link. If a visitor ...
2007-05-12, 5076👍, 0💬

Basic Concepts
Basic Concepts - XHTML 1.0 - Interview Questions What is XHTML? How is XHTML related to HTML? How is XHTML related to XML? What are the main advantages of XHTML over HTML? Is an XHTML document an XML document? Is an XML document an XHTML document? Is XHTML going to replace HTML? Is XML going to repl...
2007-05-12, 5067👍, 0💬

What Is an XHTML Element Attribute
What Is an XHTML Element Attribute? - XHTML Tutorials - Introduction To Tag and Attribute Syntax An element attribute is a predefined property about this element. Element attributes allows you to provide additional information to the element. Most XHTML elements have some common attributes. But many...
2007-05-12, 5065👍, 0💬

How To Use "submit" Input/Action Fields
How To Use "submit" Input/Action Fields? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields A "submit" input field is defined as &lt;input type="submit" .../&gt;. "submit" input fields can be used to create submit buttons in a form. When a submit button is clicked, the form will be...
2007-05-12, 5056👍, 0💬

How To Use "button" Input Fields
How To Use "button" Input Fields? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields An "button" input field is defined as &lt;input type="button" .../&gt;. "button" input fields can be used to create client-side action buttons. If a client-side action button is clicked, a client-s...
2007-05-12, 5050👍, 0💬

What Are the Values Submitted on Submit Button Fields
What Are the Values Submitted on Submit Button Fields? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields A "submit" button input field does not allow viewers to enter any input values directly. But if a form is submitted, "submit" button input fields will be submitted with values based on...
2007-05-12, 5049👍, 0💬

What Is a STRONG Tag/Element
What Is a STRONG Tag/Element? - XHTML 1.0 Tutorials - Understanding In-line Elements and Tags A "strong" element is an inline element that you can use to specify text with a strong emphasis. Here are basic rules about "strong" elements: "strong" elements are inline elements. "strong" elements can no...
2007-05-12, 5046👍, 0💬

What Are the Attributes of an IMG Element
What Are the Attributes of an IMG Element? - XHTML 1.0 Tutorials - Understanding Inline Images and Image Maps There are 4 commonly used attributes for an "img" element: "src" - Required attribute. Used to specify the URL of the image file. "alt" - Required attribute. Used to specify the name of the ...
2007-05-12, 5040👍, 0💬

General
General - XHTML 1.0 - Interview Questions Do you use any tools when authoring new XHTML documents? Do you use any tools when converting HTML documents to XHTML? How to validate your XHTML documents? How comfortable are you with writing XHTML entirely by hand? Are you excited about XHTML? What would ...
2007-05-12, 5034👍, 0💬

How To Float an Image to the Right Side
How To Float an Image to the Right Side? - XHTML 1.0 Tutorials - Understanding Inline Images and Image Maps If you want to float an image to the right side of the paragraph instead of inline within a text line, you have to use the CSS property "float" to do this. The "float" property takes two value...
2007-05-12, 5028👍, 0💬

How To Use "reset" Input/Action Fields
How To Use "reset" Input/Action Fields? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields A "reset" input field is defined as &lt;input type="reset" .../&gt;. "reset" input fields can be used to create reset buttons in a form. When a reset button is clicked, the form will be refre...
2007-05-12, 5028👍, 0💬

How To Use Different Markers on Unordered List Items
How To Use Different Markers on Unordered List Items? - XHTML 1.0 Tutorials - Understanding Lists and List Items By default, browsers will use solid dots as the item markers for unordered lists. If you want to change them to something else, like tiny squares, you need to use CSS properties. Here is ...
2007-05-11, 5005👍, 0💬

What Is a Server-Side Image Map
What Is a Server-Side Image Map? - XHTML 1.0 Tutorials - Understanding Inline Images and Image Maps A server-side image map is an image inside a hyper link. The image must be defined with the "ismap" attribute in the "img" element. When a server-side image map is clicked in a browser window, the mou...
2007-05-12, 4997👍, 0💬

What Is an XHTML Entity
What Is an XHTML Entity? - XHTML Tutorials - Introduction To Element Content Syntax An XHTML entity is escape sequence used to represent a special character that is hard to enter via a normal keyboard. For example, you can not find a key on your keyboard to enter the copyright character, "&copy;...
2007-05-12, 4996👍, 0💬

What Is the Relation between XHTML and the Web
What Is the Relation between XHTML and the Web? - XHTML FAQs - Introduction To XHTML 1.0 The Web is a publisher technology based on the Internet to allow publishers to publish hyper linked documents to be viewed by Internet users. XHTML is the next generation language that used to compose those hype...
2007-05-12, 4994👍, 0💬

What Is a MAP Tag/Element
What Is a MAP Tag/Element? - XHTML 1.0 Tutorials - Understanding Inline Images and Image Maps A "map" element is special inline element that you to define map entries to be used by image maps. Here are some basic rules on "map" elements: "map" elements are inline elements. "map" elements can not hav...
2007-05-12, 4994👍, 0💬

How To Use "file" Input Fields
How To Use "file" Input Fields? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields A "file" input field is defined as &lt;input type="file" .../&gt;. "file" input fields can be used to create file upload input fields. Most browsers will display a file upload input field as a text i...
2007-05-12, 4992👍, 0💬

Can DIV Elements Be Floated
Can DIV Elements Be Floated? - XHTML 1.0 Tutorials - Understanding DIV and SPAN elements Can "div" elements be floated? The answer is yes. If you want to float a "div" block, you can use the "float" CSS property. Here is a tutorial example of floated "div" elements: &lt;?xml version="1.0" ?&...
2007-05-12, 4992👍, 0💬

What Is the Latest XHTML Specification
What Is the Latest XHTML Specification? - XHTML FAQs - Introduction To XHTML 1.0 The latest XHTML specification is XHTML 1.0 second edition revised in August, 2002 by W3C. If you are professional XHTML developer, you should get a copy of this specification at http://www.w3.org/TR/xhtml1/ .
2007-05-12, 4988👍, 0💬

<< < 1 2 3 4 5 6 7 8 > >>   Sort: Date