Saturday, November 18, 2017

Hi Guys!!!

Now we will get start with HTML

HTML language helps us to create a structure of a web page. Follow the steps to create your own web page.

Step 1 : Open Notepad
Step 2 : Type the following code,

 <html>
<title> My Page </title>
<body>
Hello World!!!
</body.>
</html>

Step 3 : Save the file. Please note that your file extension should be .html (important).
              (Example: Myweb.html)
Step 4 : Open the saved file. It can be open by a web browser.

<<<  Your first Web Page will be displayed like this.














Now we'll try to understand what the code does......

HTML codes Starts with <html> and ends with </html>. This indicates that this is an html type file.
Then, there  is a tag <title> </title> by using this tag we can input our file name.  Finally the main part of a web page will be done by the tab <body> </body>. The body tag includes everything which want to be displayed on a web page.

No comments:

Post a Comment

Why We Need Web Sites Imagine you are a web designer. You are meeting some people after long time, may be your friends or relations. Whe...