HTML for beginners!
Introducing with a very basic and primary structure of HTML.
<!DOCTYPE html><!---Above line is very first and important line for starting any HTML page.--->
<head>
<title></title>
</head>
<body>
<h1></h1>
<p></p>
</body>
</html>
Now, few key points to remember always:-
- Every tag is surrounded by brackets.
- Every tag must be closed by a sign known as back slash "/ ".
- All the content or data or any information which we want to show or display on our webpage must be written inside the body tag.
0 comments:
Post a Comment