Wednesday, September 23, 2020

Introduction of HTML5

hello guys,

today we will learn HTML5

Today we go over the introduction of HTML .


This series will cover the latest concepts including HTML5.

 before start html you have to need a text editor ,laptop /pc and internet 
  1. you can use sublime text editor or notepad   

HTML Introduction


HTML is the standard markup language for creating Web pages for any website.HTML or html5 provide basic and advance concept of HTML

I will give you every information about html  and i will cover every topic step by step .So that you  can learn it in a easy way 
If you are new to learn HTML so here we will learn basic HTML to professional level 

i will cover all the basic to advance html topic after completing HTML we go for the CSS JQUERY AND JAVASCRIPT

 What is HTML?
   
  • html is stand for hyper text markup language
  • HTML is mostly used language on the web.
  • Using HTML we create a static website only 
  •  HTML represents tags

   

 A Simple HTML Example:-

  <!DOCTYPE html>
    <html>
   <head>
       <title>Page Title</title>
    </head>
    <body>

      <h1>First Heading</h1>
      <p> first paragraph.</p>

   </body>
   </html>

Here example explain
  • <!doctype HTML>defines this document to be HTML5
  •  <html> element is the root element of an HTML page.
  • <head> element contain the meta information .
  • <title> element specifies for the  document.
  • <body> element contains content or tag .
  • <h1> element defines a large heading
  • <p> element defines a paragraph

   

No comments:

Post a Comment

Jquery Hide,Show,Toggel Effects

  jQuery hide() Method   The jQuery  if you want to hide the any content or any think then use method   Syntax :           $(selector).hide(...