HTML &CSS Day8 CSS core attribute -3
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <div id="box"> hello world! </div> <ul> <li>HTML</li> <li>CSS</li> <li>Javascript</li> <p>HTML</p> <a href="www.google.com">google</a> </ul> </body> </html> *****CSS*** #box{ background:red; width:300px; height:30px; line-height:30px; color:white; text-align:center; } ul{ ...