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

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, 1260🔥, 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, 1259🔥, 0💬

What Is HTML5?
What Is HTML5? HTML5 is the fifth version of the HTML standard. HTML5 was published as a W3C Recommendation on October 28, 2014. HMTL5 is a major redesign of the HTML standard to merge HTML 4, XHTML 1 and DOM Level 2 HTML into a single standard. Main features of HTML5 are: Added new markup elements:...
2024-03-07, 1258🔥, 0💬

Closing an HTML Element
How To Close an HTML Element? In XHTML syntax, every HTML element must be closed. There are two ways to close an HTML element: Using a closing tag, which is the element name prefixed with "/" and enclosed in a pair of angle brackets: "&lt;" and "&gt;". Closing the opening tag immediately by ...
2024-03-23, 1253🔥, 0💬

Number of Elements Defined in HTML5?
How Many Elements Are Defined in HTML5? There are 105 elements defined in HTML5: The root element: html Document metadata elements: head, title, base, link, meta, style Section elements: body, article, section, nav, aside, h1, h2, h3, h4, h5, h6, header, footer, address Grouping elements: p, hr, pre...
2024-03-07, 1253🔥, 0💬

Introduction of XHTML 1.0
Where to find tutorials in understanding what is XHTML 1.0? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in understanding what is XHTML 1.0. Clear answers are provided for frequently asked questions on what is XHTML 1.0; who developed XHTML 1.0...
2024-03-17, 1252🔥, 0💬

Using HTML 'file' Input Fields
How To Use "file" 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 input box followed by a "Browse..." button. The other attribut...
2017-04-08, 1251🔥, 0💬

Using HTML 'file' Input Fields
How To Use "file" 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 input box followed by a "Browse..." button. The other attribut...
2017-04-08, 1251🔥, 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, 1247🔥, 0💬

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

Floating an Image to the Right Side in HTML
How To Float an Image to the Right Side? 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 values: "float: left" - Specifies that the image to be floated to the le...
2017-03-27, 1238🔥, 0💬

Reducing the Display Size of an Image in HTML
How To Reduce the Display Size of an Image? If an image embedded inline is too big when displayed in a browser, you can use "width" and "height" attributes to reduce the image's display size. The display width and height should be proportional to the actual width and height of the image. Otherwise, ...
2017-03-27, 1236🔥, 0💬

What Is CDATA in HTML Documents?
What Is CDATA in HTML documents? CDATA stands for Character DATA, which is used to define a section of data that should not go through the XHTML entity translation (parsing) process. In other words, 3 special characters: "&lt;", "&gt;", and "&amp;" can be directly used in CDATA. They wil...
2024-02-28, 1233🔥, 0💬

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

Attribute Name Case Sensitive
Is Attribute Name Case Sensitive? Yes, XHTML attribute names are case sensitive. You must write all attribute names in lower case letters. Here are some valid and invalid attribute names: &lt;a href="http://dev.fyicenter.com "&gt;- Valid attribute name. &lt;a HREF="http://dev.fyicenter.c.. .
2023-09-23, 1228🔥, 0💬

HTML 'body' Tag/Element - Document Body
What Is the HTML "body" Tag/Element? 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 element of the html element. You can only place a single bo...
2024-01-10, 1226🔥, 0💬

The Opening Tag of an HTML Element
How To Write the Opening Tag of an HTML Element? When you are writing an HTML element, you must start with its opening tag, which contains the name of the element and attributes if needed. The opening tag is enclosed in a pair of angle brackets: "&lt;" and "&gt;". HTML element names are pred...
2024-03-23, 1222🔥, 0💬

HTML Input Field 'label' Tag/Element
What Is a "label" Tag/Element? A "label" element is an inline element that you can use to define a label for a form input field. Here are basic rules about a "label" element: "label" elements are inline elements. "label" elements can only be used as sub-elements of "form" elements. A "label" element...
2017-04-01, 1221🔥, 0💬

HTML 'title' Tag/Element
What Is the HTML "title" Tag/Element? The "title" element is the 4th element you need to learn. The "title" element is used to provide a text title to the XHTML document. Here are some rules about the "title" tag/element: The title element is a required child element of the head element. You must pl...
2024-01-19, 1218🔥, 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, 1218🔥, 0💬

Relation between HTML and SGML
What Is the relation between HTML and SGML? SGML (Standard Generalized Markup Language) is a metalanguage in which one can define markup languages, like HTML, for documents. SGML is a descendant of IBM's Generalized Markup Language (GML), developed in the 1960s by Charles Goldfarb, Edward Mosher and...
2024-02-09, 1215🔥, 0💬

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, 1212🔥, 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, 1210🔥, 0💬

Two HTML Elements Overlapping Each Other
Can Two HTML Elements Partially Overlap Each Other? No, two elements can not partially overlap each other. One element must be completely enclosed inside the other element. See the following two examples: &lt;!-- Valid: "em" is enclosed inside "strong" --&gt; &lt;p&gt;There was once ...
2024-02-28, 1207🔥, 0💬

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