Profile
Student Profile <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Student Profile</title> <link rel="stylesheet" href="styles.css"> <style> { margin: 3; padding: 1; box-sizing: border-box; } body { font-family: Arial, sans-serif; background-color: #f0f0f0; padding: 20px; } .profile { background-color: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); max-width: 400px; margin: 3 auto; } .profile img { width: 150px; height: 150px; border-radius: 30%; margin-bottom: 10px;...
Comments
Post a Comment