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

HTML Anchor 'a' Tag/Element
What Is an Anchor "a" Tag/Element? An "a" element is an inline element that you can use to specify a hyper link in your HTML document. An "a" element can also be used to define a bookmark in your HTML document. Here are basic rules about "a" elements: "a" elements are inline elements. "a" elements c...
2017-07-15, 1481🔥, 0💬

HTML Nested List Elements
Can List Elements Be Nested? Yes. You can nest list element within each other because: List items can have block elements as contents. List elements are block elements. List items can have list elements as contents resulting nested list elements. Below is a good tutorial example of using nested list...
2017-05-29, 1474🔥, 0💬

HTML Hyper Links and URLs
Where to find tutorials of introduction to HTML Hyper Links and URLs? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in introduction to HTML Hyper Links and URLs. Clear answers are provided with tutorial exercises on anchor tags/elements, URL str...
2017-07-21, 1466🔥, 0💬

'cellspacing' - White Spaces between HTML Table Cells
How To Control White Spaces between Table Cells? White spaces between cells refer to the vertical space between a upper cell and a lower cell in a table column, and the horizontal space between a left cell and a right cell in a table row. If inner borders are turned on, white spaces between cells ap...
2017-05-13, 1466🔥, 0💬

Relative Path Name of a URL
What Is a Relative Path Name? A relative path name is a path name that starts without the leading slash "/". If a relative path name is used in a URL, the relative path name will be replaced with the current document path name appended with the specified relative path name. If "." or ".." is used in...
2017-07-07, 1463🔥, 0💬

Using HTML 'div' Elements with CSS Properties
How To Use "div" Elements to Change CSS Properties? As elements containers, "div" elements are perfect places to set CSS properties which will be applied to all elements in the container. Here is a tutorial example of how to set CSS properties on "div" elements: &lt;?xml version="1.0" ?&gt; ...
2017-03-11, 1461🔥, 0💬

HTML Element Content Models
What Are the HTML Element Content Models? There are 4 content models defined for HTML elements: 1. EMPTY - No content. Nothing between the opening tag and the closing tag. For example: &lt;br/&gt; - "br" element has no content. &lt;br&gt;&lt;/br& amp;gt;- Same as above. &lt;m...
2017-07-30, 1456🔥, 0💬

HTML Versions and Variations
What are versions and variations of the HTML standard? HTML was developed by Tim Berners-Lee in 1980. HTML Inventor: Tim Berners-Lee Since then, a number of versions and variations of the HTML standard were published: HTML 5.1 was published as a W3C Recommendation on November 1, 2016. HTML5 was publ...
2017-02-20, 1456🔥, 0💬

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

HTML 'strong' Tag/Element
What Is an HTML "strong" Tag/Element? A "strong" element is an inline element that you can use to specify text with a strong emphasis. Here are basic rules about "strong" elements: "strong" elements are inline elements. "strong" elements can not be used at block level. Contents of "strong" elements ...
2017-04-28, 1448🔥, 0💬

Hyper Links in HTML Documents
What Are Hyper Links? A hyper link is a special text in an HTML document defined with a hidden link to another resource on the Internet. While viewing the HTML document, you can click the hyper link, the browser will follow the hidden link to fetch the linked resource to you. Hyper links in HTML doc...
2017-07-15, 1446🔥, 0💬

HTML 'hr' Tags/Elements
What Are "hr" Tags/Elements? A "hr" element is a block level element that can be used directly as a sub-element in the body element. You can use "hr" elements to specify horizontal rulers. Here are basic rules about "hr" elements: "hr" elements can only have empty contents. "hr" elements are block e...
2017-08-03, 1445🔥, 0💬

Other HTML Block Elements
What Are Other HTML Block Elements? Other block elements that are not covered in this collection: ul, ol, dl - Specifying lists of items. table - Specifying tables of columns and rows. form - Specifying forms with input fields. script - Specifying client-side script codes. div - Specifying structura...
2017-08-03, 1441🔥, 0💬

Introduction of HTML
Where to find tutorials in understanding what is HTML? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in understanding what is HTML. Clear answers are provided for frequently asked questions on what is HTML, HTML5, XHTML, Web, HTTP, XML, URL, URI...
2017-02-20, 1440🔥, 0💬

Interview Questions - HTML Hyper Links and Images
Where to find Interview Questions on HTML Hyper Links and Images? Here are some interview questions on HTML Hyper Links and Images: What is a hyper link? What is a URL? How to included an image in the middle of a sentence? How to place an image to the right side of a paragraph? What is an image map?...
2017-02-28, 1430🔥, 0💬

Incorrect HTML 'head' Element
What Is Wrong with This XHTML "head" Element? If you have trouble passing the XHTML 1.0 validation on your head element, check the following common mistakes: Missing the title element. Not closing the meta element as &lt;meta ... &gt;. You must close all elements in XHTML documents. Not clos...
2017-06-28, 1427🔥, 0💬

HTML 'big' and 'small' Tags/Elements
What Are HTML "big" and "small" Tags/Elements? "big" and "small" elements are inline elements that you can use to specify text to be displayed in bigger and smaller font sizes respectively. Here are basic rules about "big" and "small" elements: "big" and "small" elements are inline elements. "big" a...
2017-07-21, 1425🔥, 0💬

'frame' - Controlling HTML Table Borders
How To Turn On Some Parts of Table Outer Borders? If you don't want to turn all 4 edges of outer borders in a table, you need to use the "frame" attribute, which offer the following options: &lt;table border="1" frame="border"&gt; - Turns on all 4 edges. &lt;table border="1" frame="box"&...
2017-05-13, 1421🔥, 0💬

HTML Ordered List 'ol' Tag/Element
What Is an "ol" Tag/Element? An "ol" element is block level element that can be used to define an ordered list, where items are displayed with leading sequential numbers. Here are basic rules about "ol" elements: "ol" elements are block level elements. "ol" elements can not have text contents. An "o...
2017-06-16, 1417🔥, 0💬

HTML 'script' Tag/Element as Inline Element
What Is an HTML "script" Tag/Element? A "script" element is both an inline element and a block element that you can use to specify a script code to be executed by browsers. Here are basic rules about "script" elements: "script" elements are inline elements. "script" elements are also block elements....
2017-07-21, 1411🔥, 0💬

HTML Un-ordered List Item Markers
How To Use Different Markers on Unordered List Items? By default, browsers will use solid dots as the item markers for unordered lists. If you want to change them to something else, like tiny squares, you need to use CSS properties. Here is a tutorial example showing you how to set item markers to b...
2017-05-20, 1410🔥, 0💬

HTML Document Example
What Does an HTML document look like? An HTML 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 HTML document looks like if you open it in a text editor: &am...
2017-02-20, 1407🔥, 0💬

HTML 'form' Element Attributes
What Are the Attributes of a "form" Element? There are 3 commonly used attributes for a "form" element: "action" - Required attribute. Used to specify the URL of the form processing program. "method" - Optional attribute. Used to specify the form submission method: "get" or "post". method="get" is t...
2017-04-19, 1402🔥, 0💬

Interview Questions - HTML Block Elements
Where to find Interview Questions on HTML Block Elements? Here are some interview questions on HTML Block Elements: What is a block element? Is "h1" a block element? Is "br" a block element? Is "pre" a block element? Can you use a block element inside a "p" element? Can you use a block element insid...
2017-03-07, 1398🔥, 0💬

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