How to make an html page | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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>

23rd Oct 2019, 4:13 PM
Wraithhhuu
Wraithhhuu - avatar
9 Answers
+ 3
Go through the HTML tutorial of sololearn. You will learn everything about HTML there very easily.
23rd Oct 2019, 4:51 PM
Abhishek Kumar Singh
Abhishek Kumar Singh - avatar
+ 3
great website for web development : w3schools.com
25th Oct 2019, 3:30 PM
spyrax10
spyrax10 - avatar
+ 1
You are missing the <head> tag. <!DOCTYPE html> <html> <head> <title>Page title</title> </head> <body> </body> </html>
23rd Oct 2019, 4:36 PM
Isaac Salcedo
Isaac Salcedo - avatar
0
And HTML5 declaration is wrong It should be <!DOCTYPE html>
23rd Oct 2019, 4:43 PM
Farhan
Farhan - avatar
0
Thanks Farhan.
23rd Oct 2019, 5:03 PM
Isaac Salcedo
Isaac Salcedo - avatar
0
Sasala... you miss the between <html> and <title>
23rd Oct 2019, 5:04 PM
SamsunG.lmnTrix
SamsunG.lmnTrix - avatar
0
thank you sir
24th Oct 2019, 3:25 AM
Wraithhhuu
Wraithhhuu - avatar
0
Sorry salasa H. Kumar i mean in there you miss the head between .....
24th Oct 2019, 5:12 PM
SamsunG.lmnTrix
SamsunG.lmnTrix - avatar
0
For CSS, css-tricks.com is a great source of information.
25th Oct 2019, 7:25 PM
Isaac Salcedo
Isaac Salcedo - avatar