what is basic fundamental block of html page | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

what is basic fundamental block of html page

3rd Aug 2018, 2:01 AM
RahimUnnisa Khan
RahimUnnisa Khan - avatar
4 Answers
+ 3
<!DOCTYPE html> <html> <head> </head> <body> <!--You mean this?--> </body> </html>
3rd Aug 2018, 2:42 AM
Akib
Akib - avatar
+ 3
<!DOCTYPE html> //if using HTML5 i not just: <html> <head> <tittle> fundamental </tittle> </head> <body> <p> here you go </p> </body> </html>
3rd Aug 2018, 3:55 PM
Ubeid
Ubeid - avatar
+ 2
<html> <head> <title></title> </head> <body> </body> </html>
4th Aug 2018, 8:12 PM
Feres
Feres - avatar
0
<!DOCTYPE html> <html> <head> <title> <--your website title--> </title> </head> <body> <--content goes in here--> </body> </html>
5th Aug 2018, 1:10 AM
Uche Favour
Uche Favour - avatar