Skip to main content

Elements in HTML Document #3 lecture

Today we will see some more Elements and tag's 

Objective: some more formatting tag's  one of them use in mathematics formula's;

  •  <hr> Horizontals rule:

The <hr> elements is used to create a horizontal line it can be styled to separate content visually:

you have to write this code :

<h1> 3rd lecture </h1>

<hr>

<p>this is an example<p>

  • `<sub>`: Subscript
    This tag is used to format text. like:

    <p>This is H<sub>2</sub>O(Water).</p>
  • `<sup>` Superscript:
    This tag is also used to format like this:
    
    <p>This is 10<sup>2</sup>O(10 squared).</p>

Today we learn some more elements tag's in HTML and our 1st chapter is completed we will meet on next lecture and one important thing is in the bottom i will share today's topic notes and a task you will have to complete this  ok guys Goodbye thanks..
















tag's
html
html lecture 
html notes pdf
html css notes
html forms
html tags
javascript notes pdf

Comments

Popular posts from this blog

Lists in HTML lecture #5

 Lists in HTML Title: Understand the Lists elements: objective: By the end of this lecture you will : Understands different types of HTML lists. Be able to create ordered and unordered Lists. Learn how to create nested lists. Apply list styling and attributes. Types of lists: HTML offers three types of lists Ordered Lists(OL): These are numbered and letters list is used to ordered items: Unordered Lists(UL): These are bulleted list used to order the items : Definition Lists(DL): These lists are used to define the terms and descriptions: How to create these lists: Order lists(OL):     <ol>          <li> Orange </li>         <li> Apple </li>         <li> Banana </li>     </ol> The ` <ol> ` tag is used to create ordered lists: The ` <li> ` tag is used to create a lists elements. Unordered Lists(UL):     <ul...