In this lesson you will know about what is html ? | Why to learn html ? | Html basic structure
The Html
HTML stands for Hyper Text Markup Language, the most widely used Web-based language for web pages development. Berners-Lee created HTML in late 1991, but the first standard HTML specification published in 1995 was “HTML 2.0.” HTML 4.01 was a new HTML version, released at the end of 1999. Although HTML 4.01 version is widely used, HTML-5 version w is currently available
Why to Learn HTML?
HTML was originally developed to describe the layout of documents such as headings, sentences, lists, etc. to encourage the exchange of scientific information among scientists.
HTML is a MUST for students and working professionals, especially when working in the Web Development Domain, to become a great software developer. I’m going to list some of the key benefits of HTML learning:
- Create Web site – You can create a website or customize an existing web template if you know HTML well.
- Become a web designer –If you want to start a carrer as a professional web designer, HTML and CSS designing is a must skill.
- Understand web –If you want to optimize your website, to boost its speed and performance, it is good to know HTML to yield best results.
- Learn other languages –Once you understands the basic of HTML then other related technologies like javascript, php, or angular are become easier to understand.
[irp][irp posts=”1692″ name=”8 Process to Create a Professional Website”]
Hello World using HTML.
Just to bring you a little curiosity around HTML, I’m going to give you a little traditional HTML Hello World software, you can use the Demo reference to check it out.
<!DOCTYPE html>
<html>
<head>
<title>This is document title</title>
</head>
<body>
<h1>This is a heading </h1 >
<p>Hello World! </p>
</body>
</html>

Leave a Reply