You are on page 1of 8

Introduction

What is HTML?
HTML is an acronym which stands for Hyper Text Markup Language which
is used for creating web pages and web applications. Let's see what is meant
by Hypertext Markup Language, and Web page.

Hyper Text:
 Hyper Text simply means "Text within Text." A text has a link within it, is a
hypertext. Whenever you click on a link which brings you to a new webpage,
you have clicked on a hypertext. Hyper Text is a way to link two or more web
pages (HTML documents) with each other.

Markup language: 
A markup language is a computer language that is used to apply layout and
formatting conventions to a text document. Markup language makes text more
interactive and dynamic. It can turn text into images, tables, links, etc.

Web Page: 
A web page is a document which is commonly written in HTML and
translated by a web browser. A web page can be identified by entering
an URL. A Web page can be of the static or dynamic type. With the help
of HTML only, we can create static web pages.
Hence, HTML is a markup language which is used for creating attractive web
pages with the help of styling, and which looks in a nice format on a web
browser. An HTML document is made of many HTML tags and each HTML tag
contains different content.

What is an HTML A tag?


HTML tags have been utilized since the birth of the internet to format
elements on a webpage, such as text or images. HTML is part of the backend
code, and you can easily view it by right-clicking and selecting View Page
Source
HTML A tags, also known as anchor tags, are often overlooked for more
traditional internal linking methods.
When incorporated into the code of a webpage, anchor tags and their
attributes function as specialized hyperlinks that allow users to “jump”
from one section of a webpage to another. 
These hyperlinks are highly SEO- and user-friendly because they help
educate search engines on the overall topic of a webpage, help keep
code neat and organized in the backend, and enhance the user’s
experience, because users do not need to scroll through slabs of text.

 Example of HTML Tags:

<html> - start tag


<title>- title of any html page
<head>-head of any html page
<u>-its use for under line
<i>-it display italic font
<br>-this tag is use for go to another line
<h1> to <h6>- this tag is use for font size decreasing
<marquee>-This tag is use to scroll to the next line
<hr>-This tag use for horizontal rule
<font> This tag set the font color
<p> This tag is use for set the paragraph
<b> This tag is use for make the particular section bold
<table> it is use for make a table
ASSIGNMENT 1

<!DOCTYPE HTML>
<HTML>
<BODY>
<BODY BGCOLOR="GREEN">
<H1> THIS IS A BIG BOLD HEADING </H1>
<UL>
<LI> MILK </LI>
<LI> BREAD </LI>
<LI> EGG </LI>
</UL>
</BODY>
</HTML>
ASSIGNMENT 2
welcome to jis university – Title
Background color – Red
Font color – Yellow

<HTML>
<HEAD>
<TITLE>
WELCOME TO JIS UNIVERSITY
</TITLE>
</HEAD>
<BODY>
<BODY BGCOLOR="RED">
<H1>
<MARQUEE>
<FONT COLOR="YELLOW">
<I>
WELCOME TO JIS UNIVERSITY
</MARQUEE>
</I>
</FONT>
</H1>
<HR>
</BODY>
</HTML>
ASSIGNMENT 3
<HTML>
<HEAD>
<TITLE>Welcome to JISU</title>
</head>
<body>
<BODY bgcolor="yellow">
<H1>
<MARQUEE>
<FONT COLOR="GREEN">
<I>
<BR>
WELCOME TO JIS UNIVERSITY
</I>
</MARQUEE>
</FONT>
<HR>
<p>
<FONT COLOR="BLUE">
<I>
MY NAME IS SOUVIK PATRA
<BR>
I AM A STUDENT OF MANAGEMENT.
</I>
</FONT>
</P>
</BODY>
</HTML>
ASSIGNMENT 4
<HTML>
<HEAD>
<TITLE>Welcome to JISU</title>
</head>
<body>
<BODY bgcolor="yellow">
<H1>
<MARQUEE>
<FONT COLOR="GREEN">
<I>
<BR>
WELCOME TO JIS UNIVERSITY
</I>
</MARQUEE>
</FONT>
<HR>
<p>
<FONT COLOR="BLUE">
<I>
MY NAME IS SOUVIK PATRA
<BR>
I AM A STUDENT OF MANAGEMENT.
</I>
</FONT>
</P>
<IMG SRC="D:\Pictures\AdobeLightroom/1623565611854
(1).JPG" WIDTH=250 HEIGHT=250>
3 </IMG>
</BODY>
</HTML>

You might also like