Welcome everyone to the first tutorial of HTML.
Let us know a little about the same first.
HTML stands for Hypertext Markup Language and it is used specially for designing the structure of a web browser web page.
For now just remember that the code for html goes with the following syntax and you have to follow that always.
<html> // creating a html tag
<head> // creating a head tag
<meta charset="utf-8"> // it is really necessary to use this so don't miss this.
</head> // closing the head tag
<body> // creating a body tag
</body> // closing the same
</html> // closing the html tag.
So how do we create para in html.
well we use para tag that is :
<p> // it is a para tag. you always write them inside a body tag.
<p> write your paragraph content here...! </p>
Steps to create a para
step 1 : create a file with extension as .html for example abc.html.
step 2 : after following the syntax i talked about above create a para tag and write something in it. for ex : Welcome to Blurt.blog , @double-u.
Step 3 : run your html file with a browser to see the output.
Full Code :
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>my first web page is here</title>
</head>
<body>
<p>
Welcome to Blurt.blog , @double-u.<br>
hope that you will have a great journey ahead on the platform.
</p>
</body>
</html>
I think it was quite simple still any doubts can be written in the comments below.
Thank You