-
-
Notifications
You must be signed in to change notification settings - Fork 34
HTML Basic Tags
Hridaya edited this page Feb 4, 2021
·
1 revision
- When you save a HTML file, then make it's file extension to
.htmlor.htm - All HTML documents must start with a document type declaration:
<!DOCTYPE html>.- The
<!DOCTYPE>declaration represents the document type, and helps browsers to display web pages correctly - It must only appear once, at the top of the page (before any HTML tags).
- The
- The HTML document itself begins with
<html>and ends with</html>. - The visible part of the HTML document is between
<body>and</body>.
NOTE: None of the HTML tags are Case Sensitive
HTML Tutorial for Beginners
© 2021, Learn Earn & Fun, Inc.
- Home
- HTML Introduction
- HTML Basic
- HTML Headings
- HTML Paragraphs
- HTML Lists
- HTML Links