PROFILE CREATING
<!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> body { font-family: Arial, sans-serif; background-color: #f2f2f2; margin: 0; padding: 0; } .profile { display: flex; align-items: center; justify-content: center; flex-direction: column; margin-top: 20px; background-color: #f2f2f2; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); padding: 20px; width: 300px; } .avatar { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; ...