HTML Skeleton



 

HTML skeleton is the basic structure of an HTML document. It includes the essential tags needed to
create a web page. Here's a short form of the HTML skeleton:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Title</title>
</head>
<body>
<! --- Content goes here -->
</body>
</html>


Post a Comment

0 Comments