For HTML Heading and paragraph, we have to write all the html heading and paragraph in a body tag.
In <body> Tag we will write like this "<h1>Write heading here</h1>. If we need more bold and bigger size of heading then we can increase the <h(number)>. For example if we need large size of heading, we will write like this <h3></h3>.
For the the paragraph we will like this <p>Some text here...</p>
The code will show the following result...
In <body> Tag we will write like this "<h1>Write heading here</h1>. If we need more bold and bigger size of heading then we can increase the <h(number)>. For example if we need large size of heading, we will write like this <h3></h3>.
For the the paragraph we will like this <p>Some text here...</p>
<html>
<head>
<title>this is first web page</title>
</head>
<body>
<h1>First tutorial</h1>
<p>This is paragraph</p>
</body>
</html>
<head>
<title>this is first web page</title>
</head>
<body>
<h1>First tutorial</h1>
<p>This is paragraph</p>
</body>
</html>
The code will show the following result...
No comments:
Post a Comment