Sunday, April 12, 2020

Start with basics of HTML

<html>

<head>

<title>First Post</title>

</head>

<body>

<h1>My Fist Post</h1>

<p> This is my first html post.</p>

</body>

</html>



this result will appear in web browser.

No comments:

Post a Comment

css class

css class or html class: Class in html and css is a selector. We can define style rules based on the class attribute of the elements. Al...