Version | Specification | Release Date |
---|---|---|
HTML 1.0: | Non-interactive websites. Just plain text. | 1994-01-01 |
HTML 2.0: | Gave HTML its core features. Became standard for web design and development. know more | 1995-11-24 |
HTML 3.2: | Introduced and diversified the concept of tags. However, was not much popular know more | 1997-01-14 |
HTML 4.0: | Included CSS and became the official standard by May 1998. know more | 1998-04-24 |
HTML 5.0: | An extended version of HTML 4.01, which was published in 2014 became popular by the name of HTML 5.0 and is the web as we see it today. It has been developed, keeping in mind, the needs of the present as well as the future. know more | 2014-10-28 |
<face>
<eyes>
<eye1>
</eye1>
<eye2>
</eye2>
</eyes>
<nose>
</nose>
<mouth>
</mouth>
</face>
<!DOCTYPE HTML>
<html>
<head>
<title> </title>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<!--Title-->
<title>Page Title</title>
</head>
<!--Body-->
<body>
<p>This is a Paragraph</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<!--Title-->
<title>Title</title>
<!--External StyleSheet-->
<link rel="stylesheet" href="css_file.css">
<!--Internal StyleSheet-->
<style>
.class_name{property:value}
#id_name{property:value}
</style>
</head>
<!--Body-->
<body>
<!--Inline StyleSheet-->
<p style="property:value">This is a paragraph</p>
<!--Heading-->
<h1>H1 Heading</h1>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h2>This is a Heading</h2>
</body>
</html>
Result
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h2>This is a Heading</h2>
</body>
</html>
Share TDB SCHOOL
Share this E-Learning Website on social media platforms with your friends and followers