HTML Headings
<!DOCTYPE html>
<html>
<head>
<title> My Title</title>
</head>
<body>
<h1>My Headings</h1>
<h2>My Headings</h2>
<h3>My Headings</h3>
<h4>My Headings</h4>
<h5>My Headings</h5>
<h6>My Headings</h6>
</body>
</html>
and it will show the below page
HTML Paragraph Using <p> </p>
<!DOCTYPE html>
<html>
<head>
<title> My Title</title>
</head>
<body>
<P>My Paragraph</p>
</body>
</html>
and this code will display the below page
0 comments 10:
Post a Comment