-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3_My_Resume(Table_Format).html
More file actions
100 lines (88 loc) · 3.97 KB
/
Copy path3_My_Resume(Table_Format).html
File metadata and controls
100 lines (88 loc) · 3.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Resume</title>
</head>
<body>
<!-- Resume Title -->
<h1 align="center">My Resume</h1>
<!-- Name -->
<h2 align="center">Akki Sai Kumar Reddy</h2>
<!-- Contact Info -->
<p align="center">
Email: <a href="mailto:saikumarreddyakki288@gmail.com">saikumarreddyakki288@gmail.com</a>   |  
Phone: <a href="tel:+918297653116">8297653116</a>   |  
Location: BTM Layout, Bengaluru, Karnataka, India   |  
GitHub: <a href="https://github.com/akkisaikumarreddy" target="_blank">Akki Sai Kumar Reddy</a>
</p>
<!-- Resume Table -->
<table border="1" cellspacing="0" cellpadding="5" width="100%">
<!-- Education -->
<tr>
<th>🎓 Education</th>
<td>
<ul>
<li>Nagarjuna Model School - School (2020)</li>
<li>Narayana Jr College - Intermediate (2022)</li>
<li>Sri Venkateshwara College of Engineering - College (2026)</li>
</ul>
</td>
</tr>
<!-- Skills -->
<tr>
<th>💡 Skills</th>
<td>
<ul>
<li>Python</li>
<li>HTML, CSS, JavaScript</li>
<li>Problem Solving and Debugging</li>
</ul>
</td>
</tr>
<!-- Work Experience -->
<tr>
<th>💼 Work Experience</th>
<td><strong>Fresher</strong> - Looking for opportunities to apply my skills in real-world projects</td>
</tr>
<!-- Projects -->
<tr>
<th>📂 HTML Projects</th>
<td>
<ol>
<li>Personal Homepage <a href="1_My_Personal_Homepage.html" target="_blank">About My_Self</a></li>
<li>Resume (Normal Format) <a href="2_My_Resume(Normal_Format).html" target="_blank">View</a></li>
<li>Resume (Table Format) <a href="3_My_Resume(Table_Format).html" target="_blank">View</a></li>
<li>Chessboard <a href="4_Chessboard.html" target="_blank">HTML_Chessboard</a></li>
<li>Emoji Animation <a href="5_Animation_using_Emojis.html" target="_blank">Moving Emojis & Dog</a></li>
<li>Image Animation <a href="6_Animation_using_Images.html" target="_blank">Moving Clouds & Dog</a></li>
<li>Job Searching Workshop <a href="7_Job_Searching_Workshop_WebSite.html" target="_blank">Job Sessions</a></li>
<li>Favorite Recipe <a href="8_Favorite_recipe.html" target="_blank">Recipe Page</a></li>
<li>Laptop Comparison Table <a href="9_Table_Showcase.html" target="_blank">Laptop Showcase</a></li>
<li>Portfolio <a href="10_Portfolio_Mockup.html" target="_blank">My Portfolio</a></li>
<li>Solar System Study <a href="11_HyperLinked_quest.html" target="_blank">Our Solar System</a></li>
<li>Blog <a href="12_myblog.html" target="_blank">My Blog</a></li>
<li>Taco Shop <a href="A_TACO_SHOP_WEBPAGE" target="_blank">TacoShop Webpage</a></li>
</ol>
</td>
</tr>
<!-- Extra Activities -->
<tr>
<th>🌟 Extra Activities</th>
<td>
<ul>
<li>NSS - National Service Scheme</li>
<li>Python using AI Workshop <a href="https://certx.in/certificate/27431ebc-ac17-43c8-9713-f5b20ad95b991609582" target="_blank">Workshop Certificate</a></li>
</ul>
</td>
</tr>
</table>
<br>
<hr>
<!-- Footer -->
<footer>
<p align="center">© 2026    |     All Rights Reserved By Akki Sai Kumar Reddy</p>
</footer>
</body>
</html>