HTML TUTORIALS
What is HTML?
- HTML is the hyper text markup language for Web pages.
- HTML is used to design web pages using a markup language.
- HTML is easy to learn and used
Learning HTML to begin with best example "Edit it yourself"
With our "Edit it yourself" editor, you'll be able alter the HTML code and see the result:
HTML Example
Edit it yourself
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
<a href="#">This is a linik</a>
</body>
</html>