Basic HTML Template
<doctype html>
<html>
<head>
<title>my
first web page</title>
</head>
<body>
</body>
</html>
Doctype: tell the browser the type of document you used; in this case we you used html document
html: hyper markup language.head: title is a child of head. there are some certain element element that only function on the head tag e.g <script> tag,<meta> tag etc.
title: is the title of the page. the name that appear on your browser tag.
body: every other thing will be done within the body tag.
Post a Comment