🌐
bio.html
Back
📝 Html ⚡ Executable Ctrl+S: Save • Ctrl+R: Run • Ctrl+F: Find
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Bio</title> <style> body { font-family: Arial; padding: 40px; background:#202225; color:white; } .box { max-width: 700px; margin:auto; } h1 { font-size: 2.5em; margin-bottom: 10px; } </style> </head> <body> <div class="box"> <h1>About Me</h1> <p> This is a placeholder biography page. You can add your story, background, mission, or anything you want visitors to know about you. </p> <p> Replace this text with something meaningful later. </p> </div> </body> </html>