-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (70 loc) · 2.27 KB
/
index.html
File metadata and controls
77 lines (70 loc) · 2.27 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thông tin cá nhân</title>
<style>
/* CSS nằm gọn trong file này để anh dễ quản lý */
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background-color: #f4f4f9;
color: #333;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.card {
background: white;
width: 90%;
max-width: 400px;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
text-align: center;
}
.avatar {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 1rem;
border: 3px solid #007bff;
}
h1 { margin: 0.5rem 0; font-size: 1.5rem; }
p.title { color: #666; margin-bottom: 1.5rem; }
.info-item {
text-align: left;
margin-bottom: 0.8rem;
font-size: 0.95rem;
border-bottom: 1px solid #eee;
padding-bottom: 0.5rem;
}
.btn {
display: inline-block;
margin-top: 1rem;
padding: 0.6rem 1.2rem;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 20px;
font-weight: 500;
}
.btn:hover { background-color: #0056b3; }
</style>
</head>
<body>
<div class="card">
<img src="avatar.jpg" alt="Avatar" class="avatar">
<h1>Phạm Anh Tuấn</h1>
<div class="info-group">
<div class="info-item"><strong>Email:</strong> email@example.com</div>
<div class="info-item"><strong>Phone:</strong> 0912021896</div>
<div class="info-item"><strong>Địa chỉ:</strong> Hải Phòng, Việt Nam</div>
<div class="info-item"><strong>Kỹ năng:</strong> Bơi lội, Đá Bóng, Karaoke</div>
</div>
</div>
</body>
</html>