Beginners Html Tutorial
What is Html?
You see a lot of webpages and websites which have many things and you think how it's made so let me explain you. Whenever a webpage made then it's done that some one coded that page with some coding and that coding is Html.
How to make your first Webpage?
Note: Before this remember whenever any tag start then it's end too like "<html>" this is a starting tag and ending tag is "</html>" this is the difference that it end with a slash.
Just copy the above code and paste this code in a text file then save it but saved it as "name.html"
(with out quotes ")
whenever you place a .html while saving the document then it saved as a webpage.
Now go to the place where you save "name.html" and double click it. It will open in a web browser.
Yes you made it.
Brief Description:
What is tag ?
A tag is something like a code just like <tag> this is called a tag but in Html it have many of types like <html> , <head>, <br> , <b> <h2> these all are tags.
What is opening and closing tags?
Opening tags are simple just shown are called opening tags. ( <html> , <head> , <b> , <h2> )
Closing tags have a slash sign before the name of tag. ( </html> , </head> , </b> , </h2> )
In the next lesson we will discuss about our first webpage coding what it says.
What is Html?
You see a lot of webpages and websites which have many things and you think how it's made so let me explain you. Whenever a webpage made then it's done that some one coded that page with some coding and that coding is Html.
How to make your first Webpage?
Note: Before this remember whenever any tag start then it's end too like "<html>" this is a starting tag and ending tag is "</html>" this is the difference that it end with a slash.
<html>
<head>
</head>
<body>
My First Web Page.
</body>
</html>
<head>
</head>
<body>
My First Web Page.
</body>
</html>
Just copy the above code and paste this code in a text file then save it but saved it as "name.html"
(with out quotes ")
whenever you place a .html while saving the document then it saved as a webpage.
Now go to the place where you save "name.html" and double click it. It will open in a web browser.
Yes you made it.
Brief Description:
What is tag ?
A tag is something like a code just like <tag> this is called a tag but in Html it have many of types like <html> , <head>, <br> , <b> <h2> these all are tags.
What is opening and closing tags?
Opening tags are simple just shown are called opening tags. ( <html> , <head> , <b> , <h2> )
Closing tags have a slash sign before the name of tag. ( </html> , </head> , </b> , </h2> )
In the next lesson we will discuss about our first webpage coding what it says.
Comments
Post a Comment