<< < 1 2 3 4 5 6 7 8 9 10 > >>   ∑:221  Sort:Date

HTML Body Tag and Block Level Tags
Where to find tutorials of introduction to HTML Body Tag and Block Level Tags? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in introduction to HTML Body Tag and Block Level Tags. Clear answers are provided with tutorial exercises on XHTML body ...
2024-01-10, 1427🔥, 0💬

What Are HTML List Elements
What Are HTML List Elements? HTML offers 3 list elements: "ol" - Ordered List: A list of items with leading sequential numbers. "ul" - Unordered List: A list of items with leading bullets. "dl" - Definition List: A list of items with leading terms. Here are some generic rules about list elements: Li...
2017-06-16, 1427🔥, 0💬

Hyper Link Points to a PDF File
What Happens If a Hyper Link Points to a PDF File? If you want to build a hyper link to allow visitors to access a PDF file by clicking a hyper link, you can put the URL of the PDF file directly in the "href" attribute of the hyper link. If a visitor clicks the link, the browser will fetch the PDF f...
2017-07-03, 1426🔥, 0💬

HTML List Item 'li' Tag/Element
What Is a "li" Tag/Element? An "li" element is flow type element, which can be used only as a child element of "ol" and "ul" elements. An "li" element can be used to define a list item. Here are basic rules about "li" elements: "li" elements can only be used as sub-elements of "ol" and "ul" elements...
2017-06-16, 1426🔥, 0💬

Interview Questions - HTML Inline Elements
Where to find Interview Questions on HTML Inline Elements? Here are some interview questions: What is an inline element? Is "h1" an inline element? Is "br" an inline element? Is "strong" an inline element? Can you use an inline element inside a "p" element? Can you use an inline element inside a "li...
2017-02-28, 1426🔥, 0💬

White Space Characters Handling Rules in HTML
How Exactly White Space Characters Are Ignored? White space characters will be processed (ignored) based where they are located: White space characters will be ignored between block elements. White space characters will be preserved in element "pre". White space characters will be preserved in CDATA...
2024-02-21, 1416🔥, 2💬

Default Protocol and Port Number of a URL
What Happens If Protocol or Port Number Is Missing in a URL? From a syntax point of view, all URL parts are optional. If some parts are not included in a URL, the browser and the hosting computer will provide default values. Here are some rules about the protocol name, host name, and port number: 1....
2017-07-07, 1415🔥, 0💬

Ampersand Sign in HTML Attribute Values
How To Write Ampersand Sign in Attribute Values? If you need enter an ampersand sign in an attribute value, you can not enter it directly. You must replace it with entity: &amp;amp;. Here are some interesting examples of quoted attribute values: &lt;img src="tt.gif" alt="Tutorials &amp;a...
2023-09-23, 1412🔥, 0💬

Hyper Link Points to an Image
What Happens If a Hyper Link Points to an Image? 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 clicks the link, the browser will fetch and display the ima...
2017-07-03, 1411🔥, 0💬

Using HTML 'reset' Action Fields
How To Use "reset" Input/Action 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 refreshed by replacing user entered values with default values. On...
2017-04-08, 1409🔥, 0💬

Using HTML 'reset' Action Fields
How To Use "reset" Input/Action 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 refreshed by replacing user entered values with default values. On...
2017-04-08, 1409🔥, 0💬

HTML 'div' and 'span' elements
Where to find tutorials of introduction to HTML "div" and "span" elements? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in introduction to HTML "div" and "span" elements. Clear answers are provided with tutorial exercises on basic usages of "di...
2017-03-22, 1405🔥, 0💬

Interview Questions - HTML Syntax
Where to find Interview Questions on HTML Syntax? Here are some interview questions on HTML syntax: What is the root element of an HTML document? &lt;root&gt; &lt;xml&gt; &lt;html&gt; &lt;xhtml&gt; What is HTML tag? What is HTML element? What is HTML attribute? How to...
2017-03-07, 1405🔥, 0💬

Closing XHTML 'br' Tags
What Is wrong with my &lt;br&gt; Tags? If you are used HTML syntax, you may write your &lt;br&gt; tags as in the paragraph below: &lt;p&gt; I love the way you look at me,&lt;br&gt; Your eyes so bright and blue.&lt;br&gt; I love the way you kiss me,&lt;br&a...
2024-03-23, 1404🔥, 0💬

XHTML 1.0 Document Types
How Many Document Types Defined in XHTML 1.0? There are only 3 document types are defined in XHTML 1.0: 1. Strict type: Only allow non-deprecated and non-frameset XHTML elements in this type. Strict type should be declared as below: &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "ht...
2023-11-06, 1403🔥, 0💬

HTML Element Contents
What Is the XHTML Element Content? The content of an HTML element is everything you entered between the opening tag and the closing tag of the element. Here are some good examples of XHTML element contents: &lt;!-- An empty table cell --&gt; &lt;td&gt;&lt;/td& amp;gt;&lt;!-- ...
2017-07-30, 1403🔥, 0💬

Missing XHTML 'title' Element
What Happens If the XHTML "title" Element is Missing? XHTML 1.0 requires you write the title element inside the head element. If you forget to include the title element, the XHTML validator will return an error to you. Here is how you can test this yourself. Go the W3 XHTML validator Web site: http:...
2017-06-28, 1403🔥, 0💬

XHTML 'meta' Tag/Element
What Is an XHTML "meta" Tag/Element? A "meta" element is optional child element of the head element. A "meta" element provides one piece of extra information about the XHTML document. Here are some important rules about "meta" elements: Meta elements are optional. Meta elements can only be used as s...
2017-06-28, 1401🔥, 0💬

Attributes of an HTML 'img' Element
What Are the Attributes of an "img" Element? 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 image. "width" - Optional attribute. Used to specify the width of...
2017-03-27, 1395🔥, 0💬

Using HTML 'textarea' Input Fields
What Is a "textarea" Tag/Element? A "textarea" element is an inline element that you can use to define a large input area in a form. Here are basic rules about a "textarea" element: "textarea" elements are inline elements. "textarea" elements can only be used as sub-elements of "form" elements. A "t...
2017-04-04, 1385🔥, 0💬

HTML 'del' and 'ins' Tags/Elements
What Are HTML "del" and "ins" Tags/Elements? "del" and "ins" elements are inline elements that you can use to specify text to be treated as deleted text and inserted text respectively. Here are basic rules about "del" and "ins" elements: "del" and "ins" elements are inline elements. "del" and "ins" ...
2017-04-28, 1383🔥, 0💬

Predefined HTML Attribute Values
What Are Predefined Attribute Values for an HTML attribute? Some HTML attributes have predefined values. If an attribute has predefined values, you must use one of the predefined values. For example, attribute "valign" of element "td" has 4 predefined values "baseline", "bottom", "middle", and "top"...
2023-09-23, 1382🔥, 0💬

Hyper Link Indexes within the HTML Document
How To Build Hyper Link Indexes within the Same Document? If you want build some hyper link indexes within the same document, you need use "a" elements to define some bookmarks, then use "a" elements to define hyper links that pointing to those bookmarks. The tutorial example below shows you how to ...
2017-07-03, 1382🔥, 0💬

Creating an HTML Link to Open a Document in New Window
How To Create an HTML Link to Open a Document in a New Window? Normally, if a hyper link is linked to an HTML document, the browser will display the linked document in the same window as the current document. But if you want to the browser to display the linked document in a new window, you can add ...
2017-06-16, 1381🔥, 0💬

<< < 1 2 3 4 5 6 7 8 9 10 > >>   ∑:221  Sort:Date