0
How to make an html page
<!DOCTYPE> <html> <body> <p> Paragraph Tag </p> <h2> Heading Tag </h2> <b> Bold Tag </b> <i> Italic Tag </i> <u> Underline Tag</u> </body> </html>
9 Answers
+ 3
Go through the HTML tutorial of sololearn. You will learn everything about HTML there very easily.
+ 3
great website for web development : w3schools.com
+ 1
You are missing the <head> tag.
<!DOCTYPE html>
<html>
<head>
<title>Page title</title>
</head>
<body>
</body>
</html>
0
And HTML5 declaration is wrong
It should be
<!DOCTYPE html>
0
Thanks Farhan.
0
Sasala... you miss the between <html> and <title>
0
thank you sir
0
Sorry salasa H. Kumar i mean in there you miss the head between .....
0
For CSS, css-tricks.com is a great source of information.