-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (106 loc) · 2.5 KB
/
Copy pathindex.html
File metadata and controls
122 lines (106 loc) · 2.5 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="ms">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - Muhammad Firdauz Bin Abdul Rais</title>
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:#0f172a;
color:#e2e8f0;
padding:20px;
}
.card{
width:100%;
max-width:420px;
background:#1e293b;
border:1px solid #334155;
border-radius:20px;
padding:32px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,0.4);
}
.avatar{
width:90px;
height:90px;
margin:0 auto 20px;
border-radius:50%;
background:linear-gradient(135deg,#38bdf8,#6366f1);
display:flex;
align-items:center;
justify-content:center;
font-size:2rem;
font-weight:bold;
color:white;
}
h1{
font-size:1.8rem;
margin-bottom:8px;
}
.role{
color:#38bdf8;
font-weight:600;
margin-bottom:24px;
}
.section{
text-align:left;
margin-top:20px;
}
.section h2{
font-size:1rem;
margin-bottom:10px;
color:#94a3b8;
}
.skills{
display:flex;
flex-wrap:wrap;
gap:10px;
}
.skill{
background:#0f172a;
border:1px solid #334155;
padding:8px 12px;
border-radius:999px;
font-size:0.9rem;
}
.fact{
background:#0f172a;
border-left:4px solid #38bdf8;
padding:12px;
border-radius:8px;
line-height:1.5;
}
</style>
</head>
<body>
<div class="card">
<div class="avatar">FR</div>
<h1>Muhammad Firdauz Bin Abdul Rais</h1>
<p class="role">Service Desk Analyst</p>
<div class="section">
<h2>Kemahiran</h2>
<div class="skills">
<span class="skill">Linux</span>
<span class="skill">Git</span>
<span class="skill">Docker</span>
</div>
</div>
<div class="section">
<h2>Fakta Menarik</h2>
<div class="fact">
🚀 Road To DevOps
</div>
</div>
</div>
</body>
</html>