Code:
<h1>Heading level 1</h1> <h2>Heading level 2</h2> <h3>Heading level 3</h3> <h4>Heading level 4</h4> <h5>Heading level 5</h5> <h6>Heading level 6</h6>
Output:
Code:
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere excepturi nihil sed quisquam beatae vitae repellendus inventore nemo fuga praesentium.</p>
Output:
Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere excepturi nihil sed quisquam beatae vitae repellendus inventore nemo fuga praesentium.
The <br> HTML element produces a line break in text. It is useful for writing a poem or an address, where the division of lines is significant.
The <pre> HTML element represents preformatted text which is to be presented exactly as written in the HTML file.
Example:
Code:
<pre title="Cow"> ^ ^ (oo)\_______ (__) \ )\ ||----w | || || </pre>
Output
^ ^ (oo)\_______ (__) \ )\ ||----w | || ||
The <hr> HTML element represents a thematic break between paragraph-level elements: for example, a change of scene in a story, or a shift of topic within a section. Most often displayed as a horizontal line
Example: code: <hr>, Output: the horizontal line displayed in this page after every topic
The title attribute is used to specify extra information about the element. When the mouse moves over the element then it shows the information. This is a global attribute, means it can be used with every html elements or tags.
Example:
Code:
<p title="This paragraph is an example of to show what tital attribute can do."> This is an example. One another example is the above cow diagram in the <pre> tag example, move the mouse over the cow diagram and see the text writing on the tital of that pre tag. </p>
Output:
This is an example. One another example is the above cow diagram in the <pre> tag example, move the mouse over the cow diagram and see the text writing on the tital of that pre tag.