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 Tag are use write formula in HTML
for ex

0 Comments