Basic of website
Always on website : <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title> Your Title </title> </head> <body> </body> </html> If you have CSS it will come before head and java on body <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title> Your Title </title> < link rel = "stylesheet" href = "main.css" > </head> <body> < h1 > Task Timeline </ h1 > < p id = "date" > </ p > < ul > < li class = "list" > Edit the head </ li > < li class = "list" > Edit the body </ li > < li > Link to ...