Skip to main content

How to create html Page

Hi,
here we are going to see how to create html page.

the steps are as below.

01.open notepad and type below html code

 <html>  
  <head>  
  <title>  
  Hello World  
  </title>  
  </head>  
  <body>  
  Hello World.  
  </body>  
 </html>  
02,now save this file as "index.html".
03.now open this file with any browser. you will see how the page looks like.

good day,

Comments