Basic HTML Assignment
Type this code in Notepad text editor and save file with .html extension
-------------------------------------------------
<!doctype html>
<html>
<head>
<title>HTML Introduction</title>
</head>
<body>
<h1>What is HTML?</h1>
<p>HTML is stand for Hyper Text Markup Language. It is not a programming language, it is a markup language used to create web page. A markup language has a set of markup tags and HTML uses these tags to describe web pages. The first version of HTML was written by Tim Berners-Lee in 1993. Every HTML documents contains HTML tags and plain texts. The W3C has defined HTML as an application of the Standard Generalized Markup Language (SGML)</p>
</body>
</html>
-------------------------------------------------
Output-
0 Comments