You are on page 1of 3

There are 3 basic Languages you need to know before you start your journey as

a web developer (i.e) HTML, CSS and JAVA. HTML is like a base of your website,
without HTML our website is nothing.

WHAT IS HTML? WHAT DOES HTML STAND FOR?

The HyperText Markup Language or HTML is the usual markup language for files
designed to be displayed in a web browser. It can be assisted through
technologies together with Cascading Style Sheets (CSS) and scripting
languages which include JavaScript.

Web browsers acquire HTML documents from a web server or a neighborhood


garage and render the documents into multimedia internet pages. HTML
describes the shape of an internet web page semantically and initially protected
cues for the advent of the record.

HTML factors are the elements that make up HTML pages. With HTML constructs,
photos and different items which include interactive forms can be embedded
into the rendered web page. HTML presents a means to create based
documents through denoting structural semantics for textual content together
with headings, paragraphs, lists, hyperlinks, rates, and other gadgets. HTML
factors are delineated through tags, written using angle brackets. Tags which
includes <img /> and <input /> at once introduce content material into the
page. Other tags such as <p> surround and offer data about file textual content
and can encompass different tags as sub-factors. Browsers do not display the
HTML tags however use them to interpret the content material of the web page.

TAGS AND ATTRIBUTES

Tags and attributes are the premises of HTML.

They function together however perform distinct features – it's far well worth
investing 2 minutes in differentiating these two.
What Are HTML Tags?
Tags, which are normally enclosed in angle brackets, are used to mark up the
beginning of an HTML detail. An instance of a tag is: <h1>.

Most tags ought to be opened <h1> and closed </h1> with the intention to
feature.

What are HTML Attributes?


Attributes comprise additional portions of records. Attributes take the form of
an opening tag and further information is located inside.

An example of an attribute is:

<img src="mydog.Jpg" alt="A photo of my dog.">

The image source (src) and alt text (alt) are attributes of the img tag in this case.

Golden Rules To Remember


1. The tremendous majority of tags ought to be opened (<tag>) and closed
(</tag>) with the element information including a title or text resting between
the tags.

2. When the use of a couple of tags, the tags should be closed in the order in
which they had been opened. For instance:

<strong><em>This is truely important!</em></strong>

HTML’s APPLICATION
As stated before, HTML is one of the maximum widely used language on the
web. I'll mention a couple of them here:

⚫ Web page improvement - HTML is used to create pages that are rendered
over the internet. Almost every web page of the web is having HTML tags in
it to render its details inside the browser.
⚫ Internet Navigation - HTML offers tags that can be used to navigate from
one web page to every other and are closely used in internet navigation.

⚫ Responsive UI - HTML pages nowadays work properly on all structures,


mobile, tabs, desktops, or laptops owing to a responsive layout strategy.

⚫ Offline support - HTML pages once loaded can be made offline on the
gadget without the need for the internet.

⚫ Game development- HTML5 has local assistance for rich experience and is
now useful inside the gaming improvement arena as well.

You might also like