-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (89 loc) · 3.9 KB
/
index.html
File metadata and controls
97 lines (89 loc) · 3.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal CV Website</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 text-gray-800">
<div class="max-w-2xl mx-auto my-10 p-6 bg-white shadow-lg rounded-lg">
<div class="text-center">
<img src="images/round.png" class="w-32 h-32 mx-auto rounded-full border-4 border-gray-300">
<h1 class="text-3xl font-bold mt-4">Meer Khalil</h1>
<p class="text-lg text-gray-600">I ❤️ Tea</p>
</div>
<hr class="my-4 border-gray-300">
<h3 class="text-xl font-semibold">Education</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 mt-4">
<div class="p-4 border rounded-lg shadow bg-white">
<h4 class="text-lg font-semibold">Matriculation</h4>
<p><strong>School:</strong> Lahore High School</p>
<p><strong>Total Marks:</strong> 1100</p>
<p><strong>Gained Marks:</strong> 990</p>
</div>
<div class="p-4 border rounded-lg shadow bg-white">
<h4 class="text-lg font-semibold">Intermediate</h4>
<p><strong>College:</strong> Mianwali College</p>
<p><strong>Total Marks:</strong> 1100</p>
<p><strong>Gained Marks:</strong> 950</p>
</div>
<div class="p-4 border rounded-lg shadow bg-white">
<h4 class="text-lg font-semibold">Graduation</h4>
<p><strong>University:</strong> Sukkur IBA University</p>
<p><strong>Degree:</strong> Computer Science</p>
<p><strong>Current CGPA:</strong> 3.7</p>
</div>
</div>
<hr class="my-4 border-gray-300">
<h3 class="text-xl font-semibold">Skills</h3>
<table class="w-full border-collapse mt-2">
<tbody>
<tr class="border-b">
<td class="py-2">Java</td>
<td class="py-2">⭐⭐⭐⭐⭐</td>
</tr>
<tr class="border-b">
<td class="py-2">JavaScript</td>
<td class="py-2">⭐⭐⭐⭐⭐</td>
</tr>
<tr class="border-b">
<td class="py-2">Python</td>
<td class="py-2">⭐⭐⭐⭐⭐</td>
</tr>
<tr class="border-b">
<td class="py-2">Web Development</td>
<td class="py-2">⭐⭐⭐⭐⭐</td>
</tr>
<tr class="border-b">
<td class="py-2">Data Science</td>
<td class="py-2">⭐⭐⭐</td>
</tr>
<tr>
<td class="py-2">Communication</td>
<td class="py-2">⭐⭐⭐⭐</td>
</tr>
</tbody>
</table>
<hr class="my-4 border-gray-300">
<h3 class="text-xl font-semibold">Experience</h3>
<table class="w-full border-collapse mt-2">
<thead>
<tr class="bg-gray-200">
<th class="py-2 px-4 text-left">Date</th>
<th class="py-2 px-4 text-left">Work</th>
</tr>
</thead>
<tbody>
<tr class="border-b">
<td class="py-2 px-4">2019-2021</td>
<td class="py-2 px-4">Worked at Sukkur IBA University Software House as a Java Developer</td>
</tr>
</tbody>
</table>
<div class="text-center mt-6">
<a href="contact.html" class="text-blue-600 hover:underline text-lg">Contact Me</a>
</div>
</div>
</body>
</html>