Untitled
unknown
plain_text
9 months ago
1.9 kB
3
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Shahid Ansari - Artist</title> <style> body { font-family: Arial, sans-serif; line-height: 1.6; margin: 20px; padding: 20px; } .container { max-width: 800px; margin: auto; } h1 { text-align: center; } .profile-img { display: block; margin: 20px auto; border-radius: 50%; width: 200px; height: 200px; object-fit: cover; } .bio { text-align: center; margin-bottom: 20px; } .interests { margin-top: 20px; } ul { list-style-type: none; padding: 0; text-align: center; } ul li { display: inline-block; margin: 0 10px; } footer { text-align: center; margin-top: 20px; } </style> </head> <body> <div class="container"> <header> <h1>Shahid Ansari</h1> </header> <img src="profile-picture.jpg" alt="Profile Picture" class="profile-img"> <div class="bio"> <p>Artist specializing in sketch art and computer/mobile game creation.</p> </div> <div class="interests"> <h2>Interests</h2> <ul> <li>Sketch Art</li> <li>Computer Game Creation</li> <li>Mobile Game Development</li> </ul> </div> <footer> <p>© 2024 Shahid Ansari. All rights reserved.</p> </footer> </div> </body> </html>
Editor is loading...
Leave a Comment