IN THIS TUTORIAL WE WILL LEARN ABOUT PARENT-CHILD RELATIONSHIP AMONG VARIOUS TAGS IN HTML
CONSIDER THE FOLLOWING CODE:-
<html>
<head>
<title>my first webpage</title>
</head>
<body>
<p>hello world</p>
</body>
</html>
in the above code
html has two childs namely head and body. further head has a child title and body has a child paragraph.
CONSIDER THE FOLLOWING CODE:-
<html>
<head>
<title>my first webpage</title>
</head>
<body>
<p>hello world</p>
</body>
</html>
in the above code
html has two childs namely head and body. further head has a child title and body has a child paragraph.