Introduction Of HTML for beginner

Introduction of HTML by Online Web Schools


HTML stands for Hyper Text Markup Language, which is that the most generally and widely used language on Web to develop web sites. HTML was created by Berners-Lee in late 1991 but  currently we are having HTML-5 version which is an extension to HTML 4.

HTML Tutorials for Beginning Code

Why We are Learning HTML?

We are leaning HTML to create a website or customize an existing web template if you know HTML well and If you want to start a career as a professional web designer, HTML and CSS designing is a must skill after leaning HTML you can understand web or web pages and once you understands the basic of HTML then other related technologies like CSS, JavaScript, PHP, ASP, .Net, Angular etc will be easier to understand.

Software or Application for HTML as Editor

We have a long list of this editor but we are mention you some of them which is easily you can use 
  1. Notepad
  2. Notepad++
  3. Dreamweaver 
  4. Sublime Text 
  5. Brackets 

HTML Page structure and Example

You can see below a demo HTML example code you can type it on your editor and save it as .html and as we are providing you in a demo code html tags always open with <tagname> Code goes here…</tagname>

<!DOCTYPE html>
<html>
   <head>
      <title>This is document title</title>
   </head> 
   <body>
      <h1>My First Heading</h1>
   </body> 
</html>




Post a Comment

0 Comments