HTML Tutorial - Part 1

THE BEGINNING OF HTML TUTORIAL

In this tutorial, we will learn about HTML. This tutorial will be divided into several parts. Let’s get started with the tutorial.

Q. What is HTML ?

  • HTML is an acronym for Hypertext Markup Language. HTML describes the structure of Web pages using markups. It is used for creating websites. You need a good understanding of HTML to become a better web designer or a web developer. The latest version of HTML is HTML5.

Q. Do you know who introduced HTML?

  • If you google, “Who invented HTML”, you will get the answer as “Tim Berners Lee

Q. How does a simple HTML look?

  • Below is the HTML startup template.
    <!DOCTYPE html>
    <html>
    <head>
        <title> We are learning HTML</title>
    </head>
    <body>
        <h1> Hello World! </h1>
        <h3> Learn HTML easily</h3>
    </body>
    </html>

Output

startupTemplate.jpg

Q. How to view HTML of any website?

  1. Go to the website that you want to see for HTML source code.
  2. Right click on the page.
  3. Select View Source.

Q. What do we need to start writing HTML?

Checkpoint:

At this point, make sure that you have completed following steps.

  1. You have a text editor and a browser.
  2. Copy the starter code from above, paste it into new file and save it as hello.html .
  3. Double click your new file, hello.html .
  4. Compare your output with the output above.

If you were unable to do any steps above or you did not get any similar output then comment below so that we could help you at this point. Otherwise, you can proceed further with the tutorial.

Before we begin writing HTML, it is important to know some basic terms in HTML.

Written for a blog : blog.dspasal.com

H2
H3
H4
3 columns
2 columns
1 column
Join the conversation now