tugas HTML dan CSS
1.html <!DOCTYPE html> <html> <head> <title>Page Title</title> <link rel="stylesheet" type="text/css"href="style.css"> </head> <body> <h1>hello world</h1> <h2>Do not give up</h2> <h3>must be sure sure can</h3> <p>you can do it</p> </body> </html> 2.css body { background-color:pink; } h1{ color:grey; } h2{ color:green; } h3{ color:yellow; } p{ text-align:center ; color:chocolate; }