HTML - Tutorial




HTML Tutorial

Here we covered a html tutorial for beginners and experienced with examples.

In html tutorial, we covered a topics like html basics, html elements, html tags, html attributes, html headings, html paragraphs, html styles, etc. with examples.

HTML stands for Hyper Text Markup Language. HTML is a markup language which comes with set of markup tags or codes and it is widely used to implement web pages or web applications.

In html markup tags are the building blocks to implement websites and these tags allow us to integrates images and objects in page to create interactive web pages.

Audience

HTML tutorial is targeted for beginners as well as experienced people who are interested to learn and implement web applications using HTML.

In html tutorial we covered all topics from basic to advanced level which will give clear idea how to use html in your applications with live examples.

Prerequisites

If you have basic knowledge to use computers and text editors like notepad, notepad++, etc in computer and interested to implement websites or web applications that would be enough to start with html tutorial.

What is HTML?

HTML is the standard markup language for creating web pages. Hypertext Markup Language (HTML) is the standard markup language for creating web pages and web applications. Using HTML you can create your own website.

  • Hypertext is more than simple text. Hypertext can works as a link.

  • HTML stands for HyperText Markup Language.

  • A markup language is a computer language that uses tags to define elements within a document.

  • HTML is not a programming language.

  • HTML is a Markup Language.

  • HTML elements are basic building blocks for the construction of web pages.

  • Markup language consists of set of tags called Markup Tags.

Example

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Hello Friends This is a Heading</h1>
<p>Hello Friends This is a paragraph.</p>
</body>
</html>

Result

Page Title

Hello Friends This is a Heading

Hello Friends This is a paragraph.