Ad Code

Responsive Advertisement

Html Tags

Basic Html Tags



Paragraph

!DOCTYPE html>

<html>

<head>    

    <title>paragraph</title>

</head>

<body>

    <p>This is paragraph</p>

</body>

</html>

Heading

!DOCTYPE html>

<html>

<head>    

    <title>heading</title>

</head>

<body>

    <h1>This is paragraph</h1>

</body>

</html>

How to Add a link

!DOCTYPE html>

<html>

<head>    

    <title>adding link</title>

</head>

<body>

      <a href=web address>click here</a>

</body>

</html>

How To add a pic

!DOCTYPE html>

<html>

<head>    

   <title>adding pic </title>

</head>

<body>

      <img src="img.jpg" alt="">

</body>

</html>

Italic words

!DOCTYPE html>

<html>

<head>    

    <title>italic word</title>

</head>

<body>

      <i> This is italic <i>

</body>

</html>

Bold words 

!DOCTYPE html>

<html>

<head>    

    <title>bold word</title>

</head>

<body>

      <b> This is bold<b>

</body>

</html>

Underline Word

!DOCTYPE html>

<html>

<head>    

    <title>Underline word</title>

</head>

<body>

      <u> This is Underline <u>

</body>

</html>

<!-- subscript and superscript -->

Subscript and Superscript Tag are use write formula in HTML

for ex

<p>CO<sub>2</sub>
CO2 This is an ex of subscript
<p>ax<sup>2</sup>+bx=c</p>
ax2+bx=c This is An example of Superscript



Post a Comment

0 Comments