how to create a website for free using html

To make a website you will be needing a computer with a notepad and a web browser

In html you can make two kinds of  websites static and dynamic for static website you just can use a HTML, CSS and JS but for dynamic websites we use to connect the website with the database(storage) where we could save the data and extract the data. In this we will create the basic web site using only the html

Open a text editor(NotePad) and type the below code..

<html>
      <head><title>Example</title></head>
           <body>
                 <p>
                       This is the body of the website
                 </p>
           </body>
</html>

after typing this code click on file and click on saveas and make shore that you have selected " All Files" under SaveAsType and save the file with a name with .html extension  like example.html

just go to the file saved location and double click on that file you will see the webpage that you have created.
                                                                 Thankyou

Comments