HTMLify
Profile Card
Views: 469 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | <!DOCTYPE html> <html> <head> <style> body { font-family: 'Arial', sans-serif; display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0; background-color: #f4f4f4; } .profile-card { width: 300px; background-color: #fff; border-radius: 10px; box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); overflow: hidden; transition: transform 0.3s ease; } .profile-picture { width: 100%; height: 150px; object-fit: cover; border-radius: 50%; } .profile-info { padding: 20px; text-align: center; } .profile-name { font-size: 1.5em; color: #3498db; } .profile-title { color: #555; } .profile-card:hover { transform: scale(1.05); } </style> </head> <body> <div class="profile-card"> <img src="https://placekitten.com/300/300" alt="Profile Picture" class="profile-picture"> <div class="profile-info"> <div class="profile-name">Cody</div> <div class="profile-title">Unknow Person</div> </div> </div> </body> </html> |