运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html lang="en"> <head> <title>Page Title</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> /* Style the body */ body { font-family: Arial; margin: 0; } /* Header/Logo Title */ .header { padding: 60px; text-align: center; background: #1abc9c; color: white; font-size: 30px; } /* Page Content */ .content {padding:20px;} </style> </head> <body> <div class="header"> <h1>Header</h1> <p>My supercool header</p> </div> <div class="content"> <h1>Content</h1> <p>Some content blablabla, some content blablabla.</p> <p>Some content blablabla, some content blablabla.</p> <p>Some content blablabla, some content blablabla.</p> </div> </body> </html>