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

HTML Entities
What Is an HTML Entity? An HTML 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, "©" directly. You need to use the HTML entity "&amp;copy;" to repres...
2024-04-14, 1308🔥, 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, 1308🔥, 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, 1307🔥, 0💬

HTML 'img' Tag/Element
What Is an "img" Tag/Element? A "img" element is an inline element that you can use to define an inline image to be included in a XHTML document. Here are basic rules about an "img" element: "img" elements are inline elements. A "img" element must have empty content. A "img" element requires an attr...
2017-03-27, 1305🔥, 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, 1305🔥, 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, 1304🔥, 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, 1304🔥, 0💬

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, 1300🔥, 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, 1295🔥, 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, 1291🔥, 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, 1290🔥, 2💬

HTML Description 'meta' Tag/Element
What Is the Description "meta" Tag/Element? The description "meta" element is a special meta element that provides a short description about the HTML document. The description "meta" element must include the "name" attribute as, name="description". Here is an example: &lt;meta name="description"...
2017-06-28, 1289🔥, 0💬

Values Submitted in HTML Submit Button Fields
What Are the Values Submitted on Submit Button 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 the following rules: If a "submit" button is not clicked, no...
2017-04-08, 1289🔥, 0💬

Values Submitted in HTML Submit Button Fields
What Are the Values Submitted on Submit Button 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 the following rules: If a "submit" button is not clicked, no...
2017-04-08, 1289🔥, 0💬

Floating HTML 'div' Elements
Can "div" Elements Be Floated? 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" ?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 St...
2017-03-11, 1284🔥, 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, 1283🔥, 0💬

Quoting HTML Element Attribute Values
How To Quote Element Attribute Values Properly? You know that attribute values must be quoted. But how to attribute values properly? Here are some basic rules you should remember: An attribute value must be quoted. An attribute value can be quoted with double quotes as "...". An attribute value can ...
2023-09-23, 1279🔥, 0💬

HTML 'form' Tag/Element
What Is a "form" Tag/Element? A "form" element is a block element that you can use to define an input form with input fields. Here are basic rules about a "form" element: "form" elements are block elements. A "form" element can have empty content. A "form" element can have block elements as sub-elem...
2017-04-19, 1278🔥, 0💬

HTML 'input' Tag/Element
What Is an "input" Tag/Element? An "input" element is an inline element that can used inside a "form" element to define an input field. Here are basic rules about an "input" elements: An "input" element is an inline element. It can not be used directly inside a "form" element. It can only be used in...
2017-04-19, 1268🔥, 0💬

HTML Table Row 'tr' Tag/Element
What Is a "tr" Tag/Element? A "tr" element is a special element that can only be used as a sub-element of a "table" element. A "tr" element defines a row in a table. Here are basic rules about "tr" elements: "tr" elements are special elements only valid inside "table" elements. "tr" elements can not...
2017-05-20, 1262🔥, 0💬

Relation between HTML and XML
What Is the relation between HTML and XML? XML (Extensible Markup Language) is a generic markup language to organize generic information into a structured document with embedded tags. HTML a specific markup language to organize Web information into a structured document. When an HTML document is ser...
2024-01-31, 1261🔥, 0💬

What Is an HTML Element?
What Is an HTML Element? An HTML element is the basic building block of an HTML document. An HTML element has the following features: An HTML element must have a name. An HTML element may have zero or more attributes. An HTML element may or may not have any content. Here is a good example of an HTML...
2023-11-06, 1257🔥, 0💬

HTML Drop Down List 'select' Tag/Element
What Is a "select" Tag/Element? A "select" element is an inline element that you can use to define a dropdown input field in a form. Here are basic rules about a "select" element: "select" elements are inline elements. "select" elements can only be used as sub-elements of "form" elements. A "select"...
2017-04-01, 1253🔥, 0💬

HTML Author 'meta' Tag/Element
What Is the HTML Author "meta" Tag/Element? The author "meta" element is a special "meta" element that provides information about the author of the HTML document. The author "meta" element must include the "name" attribute as, name="author". Here is an example: &lt;meta name="author" content="FY...
2017-06-23, 1250🔥, 0💬

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