Anany sharma
3 min readOct 26, 2020

HTML TAGS

Hii! here is ANANY SHARMA. Today we learn about HTML tags and its attributes .You can also subscribe my youtube channel WIZARDING CODES

HTML tags are like reserved words which defines that how web browser will format and display the text.

1- <p> tag (paragraph)

<!DOCTYPE html>
<html>
<head>
<title> first page Title</title>
</head>
<body>
<p>This is a paragraph.</p>
</body>
</html>

HOW CAN WE APPLY INLINE CSS <p> TAG ?

First we apply alignment property — — -

<!DOCTYPE html>
<html>
<head>
<title> first page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p style=”text-align: right;” >Follow me on medium you can also subscribe my youtube channel “WIZARDING CODES”. </p>

</body>
</html>

My text print on the Right side of the Browser

Now we apply color property — — —

<!DOCTYPE html>
<html>
<head>
<title> first page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p style=”color: red “ >Follow me on medium you can also subscribe my youtube channel “WIZARDING CODES”. </p>

</body>
</html>

color attribute

HOW TO CHANGE FONT FAMILY ?

<!DOCTYPE html>
<html>
<head>
<title> first page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p style=”font-family: Bold” >Follow me on medium you can also subscribe my youtube channel “WIZARDING CODES”. </p>
</body>
</html>

HOW CAN WE CHANGE FONT SIZE?

<!DOCTYPE html>
<html>
<head>
<title> first page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p style=”font-size:70px” >Follow me on medium you can also subscribe my youtube channel
“WIZARDING CODES”. </p>
</body>
</html>

para is print in 70 pixels

HOW TO DRAW HORIZONTAL LINE IN WEBPAGE ?

<!DOCTYPE html>
<html>
<head>
<title> first page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p style=”font-size:70px” >Follow me on medium you can also subscribe my youtube channel
“WIZARDING CODES”. </p>
<hr> (THIS hr TAG USE TO DRAW HORIZONTAL LINE IN BROWSER)
<p style=”font-size:40px > i can not imagine life without HTML </p>
</body>
</html>

NOTE -For more details you can also subscribe my youtube channel WIZARDING CODES

Come in the world of coding with “WIZARDING CODES “ here you learn many different types of languages like HTML, CSS, JAVA JAVASCRIPT,C, C++ etc. Also know about the softwares like Photoshop and illustrator etc.

QUOTES

“Life is not like an algorithm which can be designed to perform It is like c program every thing will be going in flow but you dont know when error will be occur” — — — — — kaveri

“Whether you want to uncover the secrets of universe or you want to pursue the career in 21th century ,basic computer programing essential skill to learn “ — — — — -stephen hawking

stephen hawking
Anany sharma
Anany sharma

Written by Anany sharma

Security used to be an inconvenience sometimes, but now it’s a necessity all the time. — Martina Navratilova.

No responses yet