What is HTML ?
Let’s understand the meaning of HTML. HTML stands for Hyper Text Markup Language. It is the basic structural element that is used to create webpages.
A webpage with structural HTML code directs a browser how to display a page. Following is an example of a basic HTML script. The basic tags such as <html>, <head>, <title>, <body> etc. are used to get a basic HYML script.
If you are really interested to learn or test a HTML script, then here are the steps. There are plenty of tools to create webpages using HTML codes. But I am going to give you the most simple tool to learn HTML.The tool, you will need to use a text editor like “Notepad (for Windows).”
Steps to Create a Webpage in HTML using Notepad:
- Open Notepad
- Create a New Document (copy and paste the code given below)
- Save File in HTML
- View the saved File in a Web browser
The Output
Academic Library (This is Title)An academic library is a library that is attached to an educational institution (This is Heading 1)
There are different types of Libraries. (This is a paragraph)
The Code
<html>
<head>
<title>Academic Library(This is Title)</title>
</head>
<body>
<h1>An academic library is a library that is attached to an educational institution (This is Heading 1)</h1>
</body>
<p>There are different types of Libraries. (This is a paragraph)</p>
</html>