HTML BASICS :-
Starting of HTML :-
Hiii!!!!! friends today i will tell you basics of HTML .
These are the basic Tags of HTML :-
<html> :- Statring Point of an HTML.
<head> after html the head tag comes.
<title> after the head tag title tag comes.
</title> closing of title tag. every tag must be close once it is open.
</head> head should also be close.
<body> after closing of title and head tag the body tag comes and in body tag you can your code.
</body> body tag must also be close.
</html> after body tag html should be close.
Ex :-
<html>
<head>
<title>This is my first web page</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
here <h1> tag is for heading and it should also be close </h1>
after writing the above code you have to save it with the extension of ".html".
ex :- web.html.
0 Comments