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

White Space Characters in HTML
What Is a White Space Character? A white space character is a character that leaves nothing on your screen. There are 4 known white space characters: " " - The space character. "\t" - The tab character. "\n" - The new line character. "\r" - The carriage return character. White space characters are g...
2024-02-18, 1207🔥, 0💬

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, 1204🔥, 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, 1202🔥, 0💬

XHTML Document Example
What Does an XHTML Document Look Like? 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 looks like if you open it in a text editor: ...
2024-01-31, 1196🔥, 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, 1196🔥, 1💬

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, 1196🔥, 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, 1195🔥, 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, 1188🔥, 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, 1184🔥, 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, 1183🔥, 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, 1180🔥, 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, 1180🔥, 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, 1179🔥, 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, 1177🔥, 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, 1171🔥, 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, 1170🔥, 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, 1170🔥, 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, 1168🔥, 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, 1163🔥, 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, 1152🔥, 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, 1146🔥, 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, 1145🔥, 0💬

HTML 'body' Element Attributes
What Attributes Are Allowed in the HTML Body Element? XHTML 1.0 strict version does not allow some attributes that were commonly used in early versions of HTML specification. For example: "background" can be used to specify a background image, and "bgcolor" can be used to specify the background colo...
2023-08-09, 1143🔥, 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, 1142🔥, 0💬

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