Let’s Learn HTML with Fun
Introduction: Its abbreviations stand for HyperText Markup Language.
Now, what do you mean by the term HTML?
- It is a standard markup language for developing web pages.
- It basically briefs the structure of the web page.
- It is having a list of elements used to make web pages effectively.
- With the help of those elements, you can set how to display the information respectively.
Learning HTML is a necessory for those who desires to become a good software engineer especially when they are working in web designing & development field. Main benefits of learning HTML are:
- Create a website: You can design or modify existing website if you know HTML.
- Make career in web designing: If you want to begin your career as a web designer, css & html skills are must.
- Get knowledge of Web: It is good to get knowledge, if you want to self customize your website & optimize it’s performance speed.
- Become a web developer: HTML is knowledge is base of other programming langauge technologies like javascript, php, asp node. HTML & CSS are used to decorate web pages, javascript and related framework such as angular & react are used as frontend programming used to create great user experience, like animations & handling requests on web browsers. Backend programming are used to manage requests on the server like php, node, ASP.NET, java, python.
HTML Elements are comprises of three important things start tag, content and ending tag respectively.
<tagname>content</tagname>
Example:
<p>This is my name</p>
<a>How are you all? </a>
| Start tag | Element content | End tag |
|---|---|---|
| <p> | This is my name | </p> |
| <a> | How are you all? | </a> |
| <br> | none | none |
Note:
There are HTML elements have no content i.e. the <br> element tag, these tag are called singleton tag which does’t have ending tag. Let Learn HTML and make easy learning easy
HTML Stands for Hypertext markup language. It is an official markup language to build web pages with the help of which you can create your websites in an effective way. Learning HTML is like fun.
Sample code of HTML with an example:
<!DOCTYPE html>
<html>
<head>
<title>Welcome to html learning</title>
</head>
<body>
<h1>This is heading tag</h1>
<p>This is paragraph tag.</p>
</body>
</html>
