<< < 3 4 5 6 7 8 9 10 > >>   Sort: Date

Who Developed XHTML 1.0?
Who Developed XHTML? XHTML was developed by W3C HTML Working Group with Steven Pemberton as the group chair.   ⇒ Number of Tags Defined in XHTML 1.0? ⇐ What Is XHTML 1.0? ⇑ Introduction of XHTML 1.0 ⇑⇑ HTML Tutorials
2023-11-06, 1228🔥, 0💬

Relation between HTML and DTD
What Is the relation between HTML and DTD? DTD (Document Type Definition) is a language based on XML to you to define a specific type of XML documents. Since the XHTML serialization of an HTML document is a specific type of XML documents, you can use DTD to define the structure of XHTML. In fact, XH...
2024-02-09, 1227🔥, 0💬

Using HTML 'image' Input Fields
How To Use "image" Input Fields? An "image" input field is defined as &lt;input type="image" .../&gt;. "image" input fields can be used to create image buttons. If an image button is clicked, the mouse coordinates on the image and other form input data will be submitted to the form processin...
2017-04-04, 1226🔥, 0💬

Smallest Valid HTML5 Document
What is a Smallest Valid HTML5 Document? If you are interested to see the smallest, but valid, HTML5 document, look at this one: &lt;!DOCTYPE html&gt; &lt;html&gt;&lt;he ad&gt;&lt;title&gt ;Hello&lt;/title&gt;&a mp;lt;/head&gt;&lt;bod y&gt;&lt;foot...
2024-03-07, 1225🔥, 0💬

HTML 'head' Element Structure
How To Write a "head" Element Properly? The head element can not be empty. It must contain the title element, defined by the "title" tag. The head element may contain a number of other miscellaneous elements, like base, script, style, meta, link, and object elements. Here is good head element: &...
2024-01-19, 1224🔥, 0💬

Attributes Required by HTML Elements
What Is a Required Attribute in an HTML element? A required attribute is an attribute required by the HTML element. When you write an HTML element, you must include all attributes required by this element in the opening tag. Optional attributes can be omitted in the opening tag. Here are some exampl...
2023-09-26, 1220🔥, 1💬

HTML 'map' Tag/Element
What Is a "map" Tag/Element? 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 have text contents. "map" elements should have "area" elements as su...
2017-03-22, 1220🔥, 0💬

HTML 'body' Tag/Element
What Is the HTML "body" Tag/Element? The "body" element is the third element you need to learn. The "body" element is used to provide content of the HTML document. Here are some rules about the "body" tag/element: The body element is a second level element. The body element must be the second child ...
2024-01-19, 1213🔥, 0💬

Mixing Images with Text in a Paragraph in HTML
Can I Mix Images with Text in a Paragraph? Yes. "img" elements are in-line elements. You can use "img" elements to mix images with text in any paragraph defined by a "p" element'. Below is a good tutorial example of image mixed with text: &lt;?xml version="1.0" ?&gt; &lt;!DOCTYPE html PU...
2023-08-09, 1212🔥, 0💬

HTML 'style' Tag/Element
What Is an HTML "style" Tag/Element? A "style" element is an optional sub-element of the "head" element. A "link" element is used to specify Cascading Style Sheet (CSS) entries. Here is good example of a style element: &lt;?xml version="1.0" ?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XH...
2024-01-10, 1209🔥, 0💬

Tools for Viewing XHTML 1.0 Documents
What Tools can I Use to View XHTML Documents? The basic tool you need to view XHTML documents is any Web browser, like Google Chrome, Internet Explorer (IE) or Mozilla FireFox. The following tutorial shows you how to view a XHTML document with : Write an XHTML document and save it as hello.html. Run...
2023-11-02, 1207🔥, 0💬

Values Submitted in HTML Image Button Fields
What Are the Values Submitted on Image Button Fields? An "image" button input field does not allow viewers to enter any input values directly. But if an "image" button is clicked, the mouse position on the image button will be submitted with other input values to the processing program based on the ...
2017-04-04, 1205🔥, 0💬

HTML 'html' Tag/Element
What Is the HTML "html" Tag/Element? The "html" element is the first element you need to learn. The "html" element is used to enclose the entire HTML document. Here are some rules about the "html" element: The html element is the only top level element. The html element is also called the root eleme...
2024-02-18, 1203🔥, 0💬

HTML 'link' Tag/Element
What Is an HTML "link" Tag/Element? A "link" element is an optional sub-element of the "head" element. A "link" element is used to specify Cascading Style Sheet (CSS) file. Here is good example of a link element: &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE html PUBLIC "-//W...
2024-01-10, 1199🔥, 0💬

Introduction of HTML5
Where to find tutorials in understanding what is HTML5? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in understanding what is HTML5. Clear answers are provided for frequently asked questions on what is HTML5; writing and viewing HTML5 documents...
2024-03-07, 1196🔥, 0💬

Relation between HTML and URI?
What is the relation between HTML and URI? URI (Uniform Resource Identifier) is a superset of URL. URI provides a simple and extensible means for identifying a resource in a more generic way. For example, the following strings are all valid URIs: ftp://ftp.is.co.za/rfc/rfc1808 .txthttp://www.ietf.or...
2024-02-09, 1195🔥, 0💬

Values Submitted in HTML Radio Button Fields
What Are the Values Submitted on Radio Button Fields? A "radio" button input field does not allow viewers to enter any input values directly. If a form is submitted, "radio" button input fields will be submitted with values based on the following rules: If a "radio" button is not pushed, no value wi...
2017-04-15, 1191🔥, 0💬

HTML 'h1' - Heading Tags/Elements
What Are Heading Tags/Elements? Heading elements are block level elements that can be used directly as a sub-element in the body element. You can use heading elements to specify heading in different sizes. Here are basic rules about heading elements: There are 6 heading elements, named as "h1", "h2"...
2023-08-03, 1187🔥, 0💬

HTML Element Attributes
What Is an HTML Element Attribute? An element attribute is a predefined property about this element. Element attributes allows you to provide additional information to the element. Most HTML elements have some common attributes. But many HTML elements have their own specific attributes. Here are som...
2024-04-07, 1185🔥, 0💬

Relation between HTML and the Web
What Is the relation between HTML and the Web? The Web is a publisher technology based on the Internet to allow publishers to publish hyper linked documents to be viewed by Internet users. HTML is the language used to construct those hyper linked documents. So HTML is the primary language that suppo...
2024-01-31, 1185🔥, 0💬

Relation between HTML and URL
What Is the relation between HTML and URL? URL (Uniform Resource Locator) is a compact string representation of the location for a Web document or other resource that is available on the Internet. The URL of an HTML document is usually the document file name prefixed with the domain name of your Web...
2024-02-09, 1173🔥, 0💬

Required Sub-elements in HTML
What Is a Required Sub-element? A required sub-element is a sub-element that you must included in the parent element. Most sub-elements are optional. But there are some sub-elements that are required by their parent elements. Here are two good examples: &lt;!-- Valid: "head" requires "title" --&...
2024-02-28, 1169🔥, 0💬

Tab Characters in HTML 'pre' Element
Are Tab Characters Preserved in a "pre" Element? Yes. Tab characters are preserved in pre elements like other white space characters. Below is a good tutorial example of using "pre" elements: &lt;?xml version="1.0" ?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http:/...
2023-08-03, 1161🔥, 0💬

HTML 'p' Tag/Element
What Is an HTML "p" Tag/Element? A "p" element is a block level element that can be used directly as a sub-element in the body element. You can use "p" elements to specify paragraphs of text and in-line elements. Here are basic rules about p elements: "p" elements are mixed content elements. "p" ele...
2023-08-09, 1150🔥, 0💬

<< < 3 4 5 6 7 8 9 10 > >>   Sort: Date