How To Write HTML In Notepad Or Text Editor - html tutorials how to create a website using html
\\ If you have any query or questions on my post, then please comment below //
Create Browser Through Notepad:
Now you are going to learn how to write html code in notepad step by step.
Now start learning HTML:
Step 1: Open Notepad File:
Step 2: Write Code For HTML in opened notepad file.
-----------------------------
<html>
<head>
<title> Technical Programming </title>
</head>
<body>
Hello Friends
<h1>Headings</h1>
<p>My first website.</p>
<p> Hello Friends !!!!!
Welcome to my website " Technical Programming ". </p>
</body>
</html>
-------------------------------------------------------
Step 3: Now save this file with save as option and give the name whatever you want, but after the name add .html extension and then save. For example, I am saving this file with name "abc.html" or you can use htm also example: "abc.htm".
Step 4: Open saved file in any browser. Then you see the output as a web browser.
Here you see we used title element and in between <title> & </title> section. It displays on top of the site.
And in between <body> & </body> section whatever code we had written that is displayed on the browser page.
We used <h1> Element, You see the output in in bold and in big size.
<p> & </p> section is used to break the lines, You see in the output.
With the help of notepad, you can create browser like this, This is just a simple demo. You can create big website, with the help of html and using other elements of html.
For doing the same thing, you can use other softwares also:
1. Micromedia Dreamweaver: With the help of this software you can create a website in html, css, asp.net, c#.net, PHP and many more.
2. Notepad ++: By using notepad ++ you can create a website in PHP, html and css.
I hope you understand how to write html code in notepad, If you have any query, then please comment below. I will try to help you as soon as possible.