0% found this document useful (0 votes)
5 views

Import React From

Uploaded by

akramshaik2004
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

Import React From

Uploaded by

akramshaik2004
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

import React from 'react';

const Resume = () => {

return (

<div style={{ margin: '20px', fontFamily: 'Arial, sans-serif' }}>

<h1 style={{ textAlign: 'center' }}>SHAIK AKRAM</h1>

<div className="contact-info">

<p>Email: [email protected]</p>

<p>Phone: +91 9381552790</p>

</div>

<div className="section">

<h2 style={{ textDecoration: 'underline' }}></h2>

</div>

<div className="section">

<h2 style={{ textDecoration: 'underline' }}>Academic Qualifications</h2>

<table border="1" cellPadding="10">

<thead>

<tr>

<th>Course</th>

<th>Institution</th>

<th>Board/University</th>

<th>Year of Completion</th>

<th>Percentage/CGPA</th>

</tr>

</thead>
<tbody>

<tr>

<td>B. Tech (CSE)</td>

<td>KKR & KSR Institute of Technology and Science, Guntur</td>

<td>JNTUK</td>

<td>2025</td>

<td>8.06 CGPA (till date)</td>

</tr>

<tr>

<td>Intermediate (MPC)</td>

<td>Sri Chaitanya Junior college</td>

<td>Board of Intermediate Education, A.P</td>

<td>2021</td>

<td>90%</td>

</tr>

<tr>

<td>SSC</td>

<td>Yadava English Medium</td>

<td>Board of Secondary Education, A.P</td>

<td>2019</td>

<td>9.5 CGPA</td>

</tr>

</tbody>

</table>

</div>

<div className="section">
<h2 style={{ textDecoration: 'underline' }}>Technical Skills</h2>

<ul>

<li>Java, C, Python</li>

<li>SQL</li>

</ul>

</div>

<div className="section">

<h2 style={{ textDecoration: 'underline' }}>Achievements and Certificates</h2>

<ul>

<li>cloud computing Virtual Internship by Eduskills (AWS curriculum)</li>

</ul>

</div>

<div className="section">

<h2 style={{ textDecoration: 'underline' }}>Workshops and Participations</h2>

<ul>

<li>Full Stack Development using MEAN Stack</li>

<li>Java Full Stack & MongoDB by Educate Nxt</li>

<li>Android App Development by Mad Blocks</li>

</ul>

</div>

<div className="section">

<h2 style={{ textDecoration: 'underline' }}>Strengths</h2>

<ul>
<li>Confidence</li>

<li>Self and quick learner</li>

</ul>

</div>

<div className="section">

<h2 style={{ textDecoration: 'underline' }}>Personal Information</h2>

<p>Date of Birth: 13-03-2004</p>

<p>Father's Name: SHAIK KHASIM </p>

<p>Gender: Male</p>

<p>Marital Status: Single</p>

<div className="address">

<h3>Address:</h3>

<p>Ali nagar masjid old guntur</p>

<p>Guntur, Andhra Pradesh - 522001</p>

</div>

</div>

<div className="section">

<h2 style={{ textDecoration: 'underline' }}>Declaration</h2>

<p>I declare that the above-furnished information is true to the best of my knowledge and
belief.</p>

<p>Place: Guntur</p>

<p>Date: SHAIK AKRAM</p>

</div>

</div>

);
};

export default Resume;

You might also like