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

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, 1188🔥, 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, 1131🔥, 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, 1131🔥, 0💬

HTML 'body' Sub-Elements
What Elements Are Allowed as Body Sub-Elements? The content model of the body element is sub-element only. Character data is not allowed as body element's content. You can only enter sub elements inside the body element. But not all elements can be entered inside the body element. Strict HTML docume...
2023-08-09, 1104🔥, 0💬

Incorrect HTML 'body' Elements
What Is Wrong with My HTML "body" Elements? If you are having trouble with your body elements, it could be caused by one of the following common mistakes: &lt;!-- Text can not be used in body directly --&gt; &lt;body&gt; Hello world! &lt;/body&gt; &lt;!-- "title" is not a...
2023-08-09, 1054🔥, 0💬

Controlling Line Breaks in a Paragraph in HTML
How To Control Line Breaks in a Paragraph? By default line breaks within a paragraph are controlled by the browser. Lines will be wrapped at the right edge of the display area of the paragraph. If you want to force a line break in middle of a line, you can use the "br" elements. Below is a good tuto...
2023-08-03, 1048🔥, 0💬

Highlight Part of a Paragraph in HTML
How To Highlight One Part of a Paragraph? If you want to highlight one part of a paragraph, you can use the "strong" element with the "p" element. Below is a good tutorial example of using "strong" elements: &lt;?xml version="1.0" ?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Str...
2023-08-03, 1117🔥, 0💬

Getting Extra Space between Paragraphs in HTML
How To Get Extra Space between Paragraphs? By default, browsers will give a predefined white space between two paragraphs. But if you want some extra white space between two paragraphs, you can enter an extra paragraph with a &amp;nbsp; entity. Note that a true empty paragraph will not give any ...
2023-08-03, 1089🔥, 0💬

Incorrect HTML 'p' Elements
What Is Wrong with My "p" Elements? If you are having trouble with your p elements, it could be caused by one of the following common mistakes: &lt;!-- Missing closing tags --&gt; &lt;body&gt; &lt;p&gt;I love the way you look at me. &lt;p&gt;I love the way you kiss me...
2023-08-03, 1061🔥, 0💬

HTML 'pre' Tag/Element
What Is a "pre" Tag/Element? A pre element is a block level element that can be used directly as a sub-element in the body element. You can use pre elements to specify blocks of pre-formatted text with white space characters preserved. Here are basic rules about pre elements: "pre" elements are mixe...
2023-08-03, 1060🔥, 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, 1151🔥, 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, 1141🔥, 0💬

Nested HTML 'blockquote' Elements
Can XHTML "blockquote" Elements Be Nested? Yes. Blockquote elements can be directly nested. This allows you to include one quote inside another quote. Below is a good example of nested blockquote elements: &lt;?xml version="1.0" ?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Stric...
2023-08-03, 1121🔥, 0💬

Images in HTML 'pre' Elements
Can Images Be Included in "pre" Elements? Yes. In-line elements can be included pre elements. So images can be included in pre elements with img elements. Here is a good example of img elements in pre elements: &lt;?xml version="1.0" ?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 ...
2023-08-03, 1107🔥, 0💬

HTML 'blockquote' Tag/Element
What Is an XHTML "blockquote" Tag/Element? A blockquote element is a block level element that can be used directly as a sub-element in the body element. You can use blockquote elements to specify a block of paragraphs to be displayed in a quotation format. Here are basic rules about blockquote eleme...
2023-08-03, 1038🔥, 0💬

Can Two HTML Forms Be Nested
Can Two Forms Be Nested? Can two forms be nested? The answer is no and yes: No. You can not nest two forms directly. XHTML schema does not allow that. Yes. You can nest two forms indirectly. See the tutorial example below. No. Two nested form do not work as two forms. Browsers will treat them as one...
2023-01-24, 7551🔥, 2💬

'colspan' - Merging Cells HTML Table Rows
How To Merge Cells in a Row? If you want to merge multiple cells horizontally in a row, you need to use the "colspan" attribute of in a "td" element. "colspan" allows you to specify how many cells you want to merge into this cell horizontally. Below is a tutorial example of merging cells horizontall...
2022-01-18, 1900🔥, 2💬

💬 2022-01-10 amar: fdgfgfffff

HTML resources?
Hi there, I know you're busy, so I'll keep it short and sweet :) I've just built a nice little tool called 'HTML5 Periodic Table'. It's incredibly useful for any developer using HTML and the great thing is that anyone in your audience can use it anytime they want for absolutely zero cost! Naturally,...
2020-08-25, 967🔥, 0💬

Commonly Used HTML Inline Elements
What Are Commonly Used Inline Elements? Here are some commonly used inline elements: strong - Defining text with a strong emphasis. em - Defining text with an emphasis. code - Defining computer code text. sub - Defining a subscript text. sup - Defining a superscript text. del - Defining text to be t...
2017-08-03, 1613🔥, 0💬

Introduction of HTML Inline Elements
What Are XHTML Inline Elements? Inline elements are XHTML elements that can be used together with character data to form lines of paragraph blocks. Here are some basic rules about inline elements: Inline elements are usually used as sub-elements of block elements. Some inline elements have empty con...
2017-08-03, 1575🔥, 0💬

HTML In-line Elements and Tags
Where to find tutorials of introduction to XHTML 1.0 In-line Elements and Tags? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in introduction to HTML In-line Elements and Tags. Clear answers are provided with tutorial exercises on inline element...
2017-08-03, 1521🔥, 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, 1444🔥, 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 Element Content Syntax
Where to find tutorials of introduction to HTML element content syntax and basics rules? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in introduction to HTML element content syntax and basics rules. Clear answers are provided with tutorial exer...
2017-07-30, 1499🔥, 0💬

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