ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
HTML: <!doctype html> <html> <head> <title>Day13-Assignment</title> <meta charset="utf-8" /> <link rel="stylesheet" href="css/assignment.css" /> </head> <body> <div id="div"> <h1>My First Website</h1> <p>Welcome to my website! Here are some things I enjoy.</p> <ul> <li>Web Development</li> <li>Chess</li> <li>Reading</li> <li>Learning</li> </ul> <h3>Favorite Quotes</h2> <div class="borderdiv"> <p>Here is a favorite quote of mine...</p> </div> <div class="borderdiv"> <p>...and another</p> </div> </div> </body> </html> CSS: body { background-color: #DDDDDD; } #div { width: 500px; margin: auto; } .borderdiv { border: solid 1px; border-color: white; margin-bottom: 10px; text-align: center; }