You are on page 1of 11

Essential

HTML5
BEST BASIC TAGS

ENDLESS CODE, ENDLESS POSSIBILITIES


1
<!DOCTYPE>: We start with the document
declaration. This tells the browser the version
of HTML being used and sets the stage for your
web page.

ENDLESS CODE, ENDLESS POSSIBILITIES


2
<html>: Document Root
The <html> tag wraps your entire web
page, defining it as an HTML document.
It's the starting point, like the cover of a
book that encapsulates everything within.

ENDLESS CODE, ENDLESS POSSIBILITIES


3
<head>: Meta-Information
Inside the <head>, you place meta-
information about your page. This can
include the character encoding (usually
set to UTF-8), links to external
stylesheets, and scripts.

ENDLESS CODE, ENDLESS POSSIBILITIES


4
<meta>: Metadata
The <meta> tag is placed inside the
<head> tag and provides additional
metadata about the HTML document.
For instance, it specifies the character
encoding, ensuring special characters
are displayed correctly.

ENDLESS CODE, ENDLESS POSSIBILITIES


5
<title>: Page Title
Within the <title> tag, you specify the
title that appears in the browser tab.
It's what users see at the top of the
browser window or tab when they visit
your page.

ENDLESS CODE, ENDLESS POSSIBILITIES


6
<body>: Visible Content
The <body> tag contains all the visible
content of your web page, including
text, images, links, and more. It's
where the magic happens!

ENDLESS CODE, ENDLESS POSSIBILITIES


7
<link>: External Resources
The <link> tag is used to link external
resources like stylesheets. It's crucial
for applying styles to your web page,
making it visually appealing.

ENDLESS CODE, ENDLESS POSSIBILITIES


8
<script>: JavaScript Magic
The <script> tag is where you can
embed JavaScript code, adding
interactivity and functionality to your
web page. It's the magic wand of web
development!

ENDLESS CODE, ENDLESS POSSIBILITIES


These HTML tags are the building
blocks of web development.
Understanding them is the first step
toward creating your own web pages.

ENDLESS CODE, ENDLESS POSSIBILITIES


LIKE
STAY TUNED FOR OUR
UPCOMING POSTS, WHERE
WE'LL DIVE DEEPER INTO
COMMENT
EACH TAG, EXPLORE
PRACTICAL EXAMPLES, AND
GUIDE YOU THROUGH THE
EXCITING WORLD OF WEB FOLLOW
DEVELOPMENT! 🖥️💡

ENDLESS CODE, ENDLESS POSSIBILITIES

You might also like