Full width home advertisement

How To

Tech

JavaScript

Post Page Advertisement [Top]

Hello every one today i will tell you about basic web development. in ordered to make your own web site you don't need to install soft-wares like Visual studio etc. we can make a web site from a simple notepad
lets begin with simple home page building .

  1. Create an new folder by right clicking and name the folder what ever you want here i name it "Website".

  2. Now open the folder and create an notepad file with name "Default" .
  3. Now open the notepad file that you named Default.
  4. From here we  will start coding in simple HTML. 
  5. Now we will begin with some basic tags write the following lines in the notepad:
<html>
<head>
<title>
Home
</title>
</head>
</html>
      
        the above code will be placed in the notepad as follow:

Now save the code as follow:

Note: Select the Save As Type (All Files) and give the extension (.html)


it will create an .html file that will look like as follow:

at this point delete the notepad file we don't need it any more now open the the .html file it will open in your default browser an blank page nothing on it but you can see the title Home that we write in <title>Home</title> tag as follow:

Now you know how to make an .html file with out any software i will tell you about design and further coding next time thanks for reading.


Bottom Ad [Post Page]