Skip to content

Commit a5de911

Browse files
authored
index.md
1 parent bc28f18 commit a5de911

File tree

1 file changed

+141
-4
lines changed

1 file changed

+141
-4
lines changed

index.md

Lines changed: 141 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,142 @@
1-
---
2-
title: Welcome to my blog
3-
description: Hi
4-
---
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Ramanjeet Singh Portfolio</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
margin: 0;
11+
padding: 0;
12+
background-color: #fff7e6;
13+
color: #333;
14+
}
15+
16+
header {
17+
background-color: #ff8c42;
18+
color: white;
19+
padding: 20px;
20+
text-align: center;
21+
}
22+
23+
header img {
24+
border-radius: 50%;
25+
width: 150px;
26+
height: 150px;
27+
object-fit: cover;
28+
border: 5px solid white;
29+
}
30+
31+
header h1 {
32+
margin: 10px 0;
33+
}
34+
35+
header p {
36+
font-size: 1.2em;
37+
margin: 5px 0;
38+
}
39+
40+
main {
41+
padding: 20px;
42+
}
43+
44+
section {
45+
margin-bottom: 40px;
46+
}
47+
48+
section h2 {
49+
border-bottom: 3px solid #ff8c42;
50+
padding-bottom: 5px;
51+
margin-bottom: 20px;
52+
color: #ff8c42;
53+
}
54+
55+
ul {
56+
list-style: none;
57+
padding: 0;
58+
}
59+
60+
ul li {
61+
margin-bottom: 10px;
62+
padding: 10px;
63+
background-color: #fff2e0;
64+
border-left: 4px solid #ff8c42;
65+
}
66+
67+
footer {
68+
text-align: center;
69+
padding: 10px;
70+
background-color: #ff8c42;
71+
color: white;
72+
}
73+
</style>
74+
</head>
75+
<body>
76+
<header>
77+
<img src="IMG_0803 Medium.png" alt="Ramanjeet Singh">
78+
<h1>Ramanjeet Singh</h1>
79+
<p>Senior iOS Developer | Swift & Objective-C Expert</p>
80+
</header>
81+
82+
<main>
83+
<section id="about">
84+
<h2>About Me</h2>
85+
<p>With over 6.5 years of experience in mobile software development, I specialize in creating high-performance iOS applications. My expertise lies in Swift, Objective-C, and various iOS frameworks and tools, delivering robust and scalable solutions tailored to client needs.</p>
86+
</section>
87+
88+
<section id="skills">
89+
<h2>Technical Skills</h2>
90+
<ul>
91+
<li><strong>Programming Languages:</strong> Swift, Objective-C</li>
92+
<li><strong>Frameworks:</strong> UIKit, AVFoundation, Core Location, MapKit, HealthKit, Core Animation, In-App Purchases, Push Notifications</li>
93+
<li><strong>Tools:</strong> Xcode, Interface Builder, Accessibility Inspector, Git</li>
94+
<li><strong>APIs and Integrations:</strong> RESTful APIs, JSON, Firebase, Payment Gateways, Third-party SDKs (CocoaPods, SPM)</li>
95+
<li><strong>Database:</strong> Core Data, Realm, User Defaults, Keychain</li>
96+
<li><strong>App Distribution:</strong> App Store, TestFlight, Diawi</li>
97+
</ul>
98+
</section>
99+
100+
<section id="experience">
101+
<h2>Professional Experience</h2>
102+
<ul>
103+
<li><strong>Senior iOS Developer - 6.5 Years</strong></li>
104+
<li>Developed and maintained iOS applications using Swift and Objective-C.</li>
105+
<li>Implemented features like MapKit, HealthKit, Firebase integration, and payment gateways.</li>
106+
<li>Published multiple applications on the App Store and handled updates and bug fixes.</li>
107+
<li>Collaborated with cross-functional teams to ensure project success.</li>
108+
</ul>
109+
</section>
110+
111+
<section id="projects">
112+
<h2>Projects</h2>
113+
<ul>
114+
<li><strong>Red Precision:</strong> A roof tracing measurement app. <a href="https://apps.apple.com/us/app/red-precision/id6447519133" target="_blank">App Store Link</a></li>
115+
<li><strong>Wrkout:</strong> A gym workout app. <a href="https://apps.apple.com/sa/app/wrkout/id6466780571" target="_blank">App Store Link</a></li>
116+
<li><strong>Straight Trippin:</strong> A travel planning platform. <a href="https://apps.apple.com/lt/app/straight-trippin/id6469703433" target="_blank">App Store Link</a></li>
117+
<li><strong>Deer’s Eye View:</strong> An app showcasing animal vision. <a href="https://apps.apple.com/us/app/deers-eye-view/id6446702733" target="_blank">App Store Link</a></li>
118+
</ul>
119+
</section>
120+
121+
<section id="education">
122+
<h2>Education</h2>
123+
<ul>
124+
<li><strong>Bachelor of Technology in Computer Science</strong></li>
125+
<li>Graduated with distinction, focusing on mobile and software development.</li>
126+
</ul>
127+
</section>
128+
129+
<section id="contact">
130+
<h2>Contact</h2>
131+
<p>Email: [email protected]</p>
132+
<p>Phone: +91-12345-67890</p>
133+
<p>LinkedIn: <a href="https://linkedin.com/in/ramanjeetsingh" target="_blank">linkedin.com/in/ramanjeetsingh</a></p>
134+
</section>
135+
</main>
136+
137+
<footer>
138+
<p>&copy; 2025 Ramanjeet Singh. All rights reserved.</p>
139+
</footer>
140+
</body>
141+
</html>
5142

0 commit comments

Comments
 (0)