create a simple webpage in HTML5
- Get link
- X
- Other Apps
Create a simple webpage in HTML language.
Input:
<!DOCTYPE html>
<html>
<head>
<title> simple webpage </title>
</head>
<body>
<h2> Hello HTML </h2>
<p> this is paragraph tag </p>
</body>
</html>
Output :
Hello HTML
this is paragraph tag
Popular posts from this blog
Happy Holi
How to create a heading in HTML ?
How to create a heading tag in HTML. Heading <h1> to <h6> tag. Input: <!DOCTYPE html> <html> <head> <title>Headings tag</title> </head> <body> <h1> This is Heading h1</h1> <h2> This is Heading h2</h2> <h3> This is Heading h3</h3> <h4> This is Heading h4</h4 > <h5> This is Heading h5</h5> <h6> This is Heading h6</h6> </body> </html> Output: Headings tag This is Heading h1 This is Heading h2 This is Heading h3 This is Heading h4 This is Heading h5 This is Heading h6
Comments
Post a Comment