-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
245 lines (212 loc) · 8.33 KB
/
index.html
File metadata and controls
245 lines (212 loc) · 8.33 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>King | App Developer Portfolio</title>
<style>
:root {
--bg-color: #0f172a;
--surface-color: #1e293b;
--text-primary: #f8fafc;
--text-secondary: #94a3b8;
--accent-color: #3b82f6;
--accent-hover: #2563eb;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
body {
background-color: var(--bg-color);
color: var(--text-primary);
line-height: 1.6;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 0 2rem;
}
/* Header / Hero Section */
header {
padding: 6rem 0 4rem 0;
border-bottom: 1px solid var(--surface-color);
}
h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
color: var(--text-primary);
}
.subtitle {
font-size: 1.5rem;
color: var(--text-secondary);
margin-bottom: 2rem;
}
.accent-text {
color: var(--accent-color);
}
/* Sections */
section {
padding: 4rem 0;
border-bottom: 1px solid var(--surface-color);
}
section h2 {
font-size: 2rem;
margin-bottom: 2rem;
color: var(--text-primary);
}
p {
color: var(--text-secondary);
margin-bottom: 1.5rem;
font-size: 1.1rem;
}
/* Skills Tags */
.skills-container {
display: flex;
flex-wrap: wrap;
gap: 1rem;
}
.skill-tag {
background-color: var(--surface-color);
color: var(--accent-color);
padding: 0.5rem 1rem;
border-radius: 6px;
font-weight: 500;
font-size: 0.9rem;
border: 1px solid rgba(59, 130, 246, 0.2);
}
/* Project Cards */
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.project-card {
background-color: var(--surface-color);
padding: 2rem;
border-radius: 12px;
transition: transform 0.2s ease, box-shadow 0.2s ease;
border: 1px solid rgba(255, 255, 255, 0.05);
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
border-color: rgba(59, 130, 246, 0.3);
}
.project-card h3 {
font-size: 1.4rem;
margin-bottom: 1rem;
}
.project-card p {
font-size: 1rem;
margin-bottom: 1.5rem;
}
.project-links a {
display: inline-block;
text-decoration: none;
color: white;
background-color: var(--accent-color);
padding: 0.5rem 1rem;
border-radius: 6px;
font-size: 0.9rem;
transition: background-color 0.2s ease;
}
.project-links a:hover {
background-color: var(--accent-hover);
}
/* Footer */
footer {
padding: 3rem 0;
text-align: center;
color: var(--text-secondary);
}
footer a {
color: var(--accent-color);
text-decoration: none;
margin: 0 1rem;
}
footer a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
h1 { font-size: 2.5rem; }
.subtitle { font-size: 1.2rem; }
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Hi, I'm <span class="accent-text">King</span>.</h1>
<p class="subtitle">App Developer building production-ready applications.</p>
<div class="skills-container">
<span class="skill-tag">GitHub: masskingslin</span>
<span class="skill-tag">Location: Chennai, India</span>
</div>
</div>
</header>
<main>
<section id="about" class="container">
<h2>About Me</h2>
<p>I am a software developer focusing on advanced Android applications, system-level metrics, and integrating AI for real-world problem solving. I am passionate about writing precise, error-free, and production-grade code solutions.</p>
<p>From exploring modern UI approaches like Jetpack Compose to managing personal cloud servers and Docker environments, I build robust systems from the ground up.</p>
</section>
<section id="skills" class="container">
<h2>Technical Arsenal</h2>
<div class="skills-container">
<span class="skill-tag">Android Development</span>
<span class="skill-tag">Jetpack Compose</span>
<span class="skill-tag">Python</span>
<span class="skill-tag">AI Integration</span>
<span class="skill-tag">Docker / Alpine Linux</span>
<span class="skill-tag">Termux Server Admin</span>
<span class="skill-tag">Network Diagnostics</span>
<span class="skill-tag">Git / GitHub</span>
</div>
</section>
<section id="projects" class="container">
<h2>Featured Projects</h2>
<div class="projects-grid">
<div class="project-card">
<h3>KingWatch Pro</h3>
<p>An advanced diagnostic application focused on deep network monitoring and system-level Android metrics. Engineered to handle complex threads and network detection seamlessly.</p>
<div class="skills-container" style="margin-bottom: 1.5rem;">
<span class="skill-tag" style="font-size: 0.8rem; padding: 0.2rem 0.6rem;">Android</span>
<span class="skill-tag" style="font-size: 0.8rem; padding: 0.2rem 0.6rem;">Python</span>
</div>
</div>
<div class="project-card">
<h3>Crown Bible App</h3>
<p>A multi-language application featuring precise text rendering and modern UI architectures. Actively developed and maintained with a focus on fixing Android compatibility and runtime issues.</p>
<div class="skills-container" style="margin-bottom: 1.5rem;">
<span class="skill-tag" style="font-size: 0.8rem; padding: 0.2rem 0.6rem;">Jetpack Compose</span>
<span class="skill-tag" style="font-size: 0.8rem; padding: 0.2rem 0.6rem;">AndroidIDE</span>
</div>
<div class="project-links">
<a href="https://github.com/masskingslin/Bible-verses-app" target="_blank" rel="noopener noreferrer">View Repository</a>
</div>
</div>
<div class="project-card">
<h3>Stock Market Analytics App</h3>
<p>An application currently in development that attempts to integrate Indian stock market analytics with AI to process data and generate actionable predictions.</p>
<div class="skills-container" style="margin-bottom: 1.5rem;">
<span class="skill-tag" style="font-size: 0.8rem; padding: 0.2rem 0.6rem;">AI/ML</span>
<span class="skill-tag" style="font-size: 0.8rem; padding: 0.2rem 0.6rem;">Data Analytics</span>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p>Connect with me:</p>
<div style="margin-top: 1rem;">
<a href="https://github.com/masskingslin" target="_blank" rel="noopener noreferrer">GitHub</a>
</div>
<p style="margin-top: 2rem; font-size: 0.9rem;">© 2026 King. All rights reserved.</p>
</div>
</footer>
</body>
</html>