Structure of HTML 5
<!DOCTYPE HTML>
<html>
<head>
<title> </title>
<meta>
<link>
<script> </script>
<style> </style>
</head>
<body>
</body>
</html>
Note: If any tag is open after that just close it out, and after that write inside it , so that you will never miss the closing the tag.
Save the file with .HTML extension
Example: First.html
<!doctype html>
<html>
<head>
<title> My First Web Page </title>
</head>
<body>
This is the body of the Web Page.
</body>
</html>
No comments:
Post a Comment