Welcome to html tutorials
 Means Hyper text markup language
 It is based on tags
 Html is used for create webpages and web
applications.
 This tags are start and end tags
 Start and end tags also called as opening and
closing tags.
 Tags identified with angle brackets <html>
 Tags are many types.
For ex:<p></p>,<a></a> etc.,
 Html documents simply called as webpages.
 The html tags written in small letters.
 This tags contains ‘attributes’.
 The attributes used for highlight the content of
html tags.
 Tags also called as ‘html elements’.
 The html documents created by using editors like
notepad and more softwares also available.
 That softwares are
1.Adobe dreamweaver.
2.Microsoft expression and etc.,
 Html document saves with ‘.html’ extension.
 Html document runs on web browsers like
internet explorer,firefox,opera ,etc.,
 But cannot shows the errors in runtime on
browser.
 By using the CSS and JAVASCRIPT then Html more
effective.
<html>
<head>
</head>
<body>
<p>Hello world</p>
<p> This is basic structure of html page</p>
</body>
</html>

Html tutorial

  • 1.
    Welcome to htmltutorials
  • 2.
     Means Hypertext markup language  It is based on tags  Html is used for create webpages and web applications.  This tags are start and end tags  Start and end tags also called as opening and closing tags.  Tags identified with angle brackets <html>  Tags are many types. For ex:<p></p>,<a></a> etc.,  Html documents simply called as webpages.  The html tags written in small letters.
  • 3.
     This tagscontains ‘attributes’.  The attributes used for highlight the content of html tags.  Tags also called as ‘html elements’.  The html documents created by using editors like notepad and more softwares also available.  That softwares are 1.Adobe dreamweaver. 2.Microsoft expression and etc.,  Html document saves with ‘.html’ extension.  Html document runs on web browsers like internet explorer,firefox,opera ,etc.,  But cannot shows the errors in runtime on browser.  By using the CSS and JAVASCRIPT then Html more effective.
  • 4.
    <html> <head> </head> <body> <p>Hello world</p> <p> Thisis basic structure of html page</p> </body> </html>