How to write title, What is main tags in HTML | Class #01

Advertisement

HTML is an one of the language, this language is used to design website. CSS is used to styling the website as per our requirement.

HTML:- Hyper Text Markup Language
CSS    :- Cascading Style Sheet

VIDEO: HTML and CSS Class #01

Advertisement

html and css

Mian tags for website coding:

<!DOCTYPE html>
<html>
     <head>
          <title></title>
     </head>
<body>
             <header></header>
             <section></section>
             <footer></footer>               
        </body>
</html>

OUTPUT:

output image

Here output image shows empty page and shows the title as saved file name.


How to create title in website:


<!DOCTYPE html>
<html>
     <head>
          <title>HTML AND CSS CLASS-1</title>
     </head>
<body>
        </body>
</html>

OUTPUT IMAGE:

output image

How to write content in website:

<!DOCTYPE html>
<html>
     <head>
          <title>HTML and CSS Class #01</title>
     </head>
<body>
             <header>
                     <h1>How to write content</h1>
             </header>
             <section>How to write content in website</section>
             <footer>COPYRIGHT ©2019, all rights                                     reserved</footer>               
        </body>
</html>

OUTPUT IMAGE:

output image


Advertisement

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top