BEGIN HTML

HTML 4 AND HTML 5
HTML is the web page making language this language provide away to write your website this is very easy and every person can us it.
HTML stands for Hyper Text Markup Language
A markup language is a set of markup tags
HTML documents are described by HTML tags

Each HTML tag describes different document content



  1. STARTING
Every beginner must start from here:

  <!DOCTYPE html>




<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>

Example Explained

  • The DOCTYPE declaration defines the document type
  • The text between <html> and </html> describes the web document
  • The text between <body> and </body> describes the visible page content
  • The text between <h1> and </h1> describes a heading
  • The text between <p> and </p> describes paragraph

IF YOU WANT TO SEE YOUR WEBPAGE 

Close your notepad by saving the file with that name (index.html)
open your internet explorer and open that file. your file is like that:
 Browser

Share this

Related Posts

Previous
Next Post »