Untitled
unknown
plain_text
a month ago
1.4 kB
2
Indexable
Never
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Profile - Xiao Yan</title> <style> body { font-family: Arial, sans-serif; background-color: #f0f2f5; margin: 0; padding: 0; } .profile-header { text-align: center; background-color: #fff; padding: 20px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); } .profile-header img { border-radius: 50%; width: 150px; height: 150px; border: 5px solid #fff; } .profile-header h1 { margin: 10px 0 5px; font-size: 24px; } .profile-header p { color: #888; } .cover-photo { width: 100%; height: 200px; background-color: #ccc; background-image: url('cover-photo-url-here'); /* Replace with your cover photo URL */ background-size: cover; background-position: center; } </style> </head> <body> <div class="cover-photo"></div> <div class="profile-header"> <img src="profile-pic-url-here" alt="Xiao Yan"> <!-- Replace with your profile picture URL --> <h1>Xiao Yan</h1> <p>2 friends</p> </div> </body> </html>
Leave a Comment