It this tutorial, we will learn about but are the basic requirements to start with the HTML. We mainly need two software to start with HTML which are: –
Page Contents
- Text Editor
- Web Browser
Text Editor: –
We need Text Editor to write HTML code. There are lots of Text Editors are available in the market and most of them are free. You can use any Text Editor it depends on your choice even you can use Notepad. But I will use Notepad++ in this entire series because it is easy to use and much more convenient than the ordinary Notepad.
Web Browser: –
After a Text Editor, the second software which we need is a web browser. We need a web browser to check web pages after writing HTML code you can use any web browser like Edge, Firefox. But I will use Google Chrome in this entire series
These are the main software which we need to start with HTML. Let’s Look at this basic HTML Program.
<!DOCTYPE html>
<html>
<head>
<title>Title Tag</title>
</head>
<body>
<h1>Basic Requirements to Start HTML</h1>
<p>Text Editor</p>
<p>Web Browser</p>
</body>
</html>

Parvesh Sandila is a passionate web and Mobile app developer from Jalandhar, Punjab, who has over six years of experience. Holding a Master’s degree in Computer Applications (2017), he has also mentored over 100 students in coding. In 2019, Parvesh founded Owlbuddy.com, a platform that provides free, high-quality programming tutorials in languages like Java, Python, Kotlin, PHP, and Android. His mission is to make tech education accessible to all aspiring developers.