Adding Block Quotes in HTML 5

Adding Block Quotes in HTML 5

We can block quotes to set off a passage of text from the rest of the document. In the browser, the <blockquote> tag typically adds an equal amount of extra space on both sides of the text. Block quotes are commonly used with quoted text or excerpts from other resources. Another way to add space … Read more

Inserting Heading Tags in HTML5

Inserting Heading Tags in HTML5

We can use heading Tags to help clarify information on a page, organize text, and create visual structure. We can choose from six heading levels for a document, ranging from heading level 1 <h1>. The largest to heading level 6 (<h6>), The smallest. Browser display headings as bold text on a web page with space … Read more

Italicize Text tag in HTML5

Italicize Text tag in HTML5

We can use Italicize Text tag in HTML5 text tags to give it more emphasis or set it off from other text in a passage. Common uses for italicized text include highlighting a new term, setting a part of the title of a literary work, or making the text an having a different voice you … Read more

Text Bold tag in HTML5

Text Bold tag in HTML5

We Can add Text bold tag formatting to your text to Important Keywords and set them off from other text in a passage. For example, You Might make a Website name bold in a paragraph or add bold formatting to important terms in a list of items. We can add bold text to a page … Read more

Insert a Blank Space in HTML5

Insert a Blank Space in HTML5

We can insert a blank space within a line of text to indent your text you can also use bank space to help position an element on lines such as a graphic or photo. HTML code for adding such space is &nbsp; , Which stands for nonbreaking space. using such codes is necessary for adding … Read more

Insert Preformatted text tag in HTML5

Insert Preformatted text tag in HTML5

We can use the preformatted Text tags, <Pre> and </pre> to display all the line breaks and spaces you enter in your HTML code for a passage of text. Web browser ignores hard returns, Line breaks, and extra spaces between words unless you surround the content with preformatted tags. If you type a paragraph with … Read more

Horizontal Line In HTML5

We can add a dividing line or Horizontal line, across pages to separate blocks of information. The dividing line can be useful for separating topics on a page or for setting off diagrams from the flow of text. By default, most Web Browsers display a horizontal rule as a thin gray line. Horizontal rules must … Read more

Inserting a Comment tag in HTML5

Inserting a Comment tag in HTML5

We can use comment tags to write important mote to ourselves within your HTML code. Comments do not appear when a browser displays a web page. For example, we might leave a future editing task or leave a note to the web developer viewing your HTML Source Code. Comments can also be useful for highlighting … Read more

Line Break Opportunity In HTML5

Line Break Opportunity In HTML5

We can use the <wbr> Tag to specify where a browser may add a line break Opportunity if needed. The <wbr> tag is new in HTML5. We can use this tag for long words that might present problems if they were to appear near the end of the line and cause awkward spacing. The <wbr> … Read more

Line Break Tag in HTML5

Line Break Tag in HTML5

We can use a line break tag, <br> to control where your text breaks. Browsers normally wrap text automatically. A line of text that reaches the right side of the browser windows breaks and continues in the next line. We can insert a line break to instruct the browser a break the text at a … Read more