Skip to content

Instantly share code, notes, and snippets.

@Jithender5913
Last active March 19, 2022 18:27
Show Gist options
  • Save Jithender5913/077244cc617a5f4af098098ea402db6d to your computer and use it in GitHub Desktop.
Save Jithender5913/077244cc617a5f4af098098ea402db6d to your computer and use it in GitHub Desktop.
My sample CV created using HTML
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>JITHENDHARR REDDY</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- <img src="https://p.kindpng.com/picc/s/78-781041_om-button-icon-back-we
b-internet-control-karma.png",alt="SAYIE Profile pic">With this, we basically are using image source from a website and if that website goes down,
our image stops displaying in our website, alternatively, we can use image from our computer -->
<table cellspacing="20">
<tr>
<td><img src="images/harrhar.jpg" , alt="SAYIE Profile pic"></td>
<td> <h1>😎A SAYIE JITHENDHARR REDDY</h1>
<p><em>Fond of learning <strong>new things</strong>.</em></p>
<p>I completed my MBA-Finance from Siddhartha Institute of Computer Sciences
in the year 2021.<strong> I have 1 year and 9 months of work Experience in GSS USA Dept</strong>.</p>
</td>
</tr>
</table>
<hr size="3" noshade>
<h3><strong>Education and schooling</strong></h3>
<ul>
<li>Master of Business Administration(M.B.A)</li>
<br>
<li>Bachelor of commerce(B.COM)</li>
</ul>
<hr size="2" noshade>
<h3>Work Experience</h3>
<table>
<thead>
<tr>
<th>Dates</th>
<th>Work</th>
<tr>
</thead>
<tbody>
<tr>
<td>2019-2021</td>
<td>GSS USA</td>
</tr>
</tbody>
</table>
<hr size="2" noshade>
<h3>Skills</h3>
<table cellspacing="10">
<thead>
</thead>
<tbody>
<tr>
<td>Python ✨✨✨✨</td>
<td>Cooking ✨✨✨</td>
</tr>
<tr>
<td>HTML ✨✨</td>
<td>Video games ✨✨✨</td>
</tr>
</tbody>
</table>
<br>
<hr size="2" noshade>
<a href="contactme.html">Contact details</a><br>
<br>
<a href="hobbies.html">My Hobbies</a>
</body>
</html>
<!--contactme.html-->
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact me</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1>My contact details</h1>
<p>My fictional address</p>
<p>phone; 232342324224</p>
<p>Gmail; oiefef@gmail.com</p>
<hr>
<form class="" action="mailto:info@gmail.com" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="yourName" value=""><br>
<br>
<label>Email</label>
<input type="email" name="yourEmail" value=""><br>
<br>
<label>Your message:</label><br>
<textarea name="yourMessage" rows="8" cols="30"></textarea><br>
<input type="submit" name=""><br>
<br>
<label>password</label>
<input type="password" name="" value="">
<input type="submit" name="">
</body>
</html>
<!--hobbies.html-->
<!DOCTYPE html>
<html lang="en" dir="ltr">
<link rel="stylesheet" href="css/styles.css">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
</body>
<ol>
<h1>My Hobbies</h1>
<li><a href="https://www.arkadium.com/free-online-games/">Playing video games🎮</a>‍</li>
<li><a href="https://open.spotify.com/">Listening to music🎶🎧</a></li>
<li><a href="https://www.chess.com/play">Playing chess♟</a></li>
</ol>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment