Posts Tagged With: Sample program

HTML. The basics you should know.

HTML:

  • HTML (Hyper Text Markup Language) is a markup language, i.e., a language that uses markup tags.
  • An HTML document contains tags and text.
  • HTML documents are also web pages.

HTML TAGS:

  • HTML tags are always surrounded by angular brackets. Eg. <html>
  • They normally come in pairs. Eg. <body> and </body> .
  • The first tag is opening tag whereas the second tag is the closing tag.

TOOLS:

  • Notepad
  • Any web browser (try and stick to Google Chrome).

Sample Program:

<html>

<head>
<title> Hello World </title>
</head>

<body>
Hello World. This is my first web page
</body>

</html>

Copy and Paste the code in notepad and save it as “HelloWorld.html”

My next post will explain the above program.

Categories: Uncategorized | Tags: , , , , , , , , , | 1 Comment

Blog at WordPress.com.