-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
84 lines (80 loc) · 2.79 KB
/
resume.html
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
<!DOCTYPE html>
<html>
<head>
<title>My Resume</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Ishwar Sharma</h1>
<div id="profile-image">
<img src="R.jpg" alt="Ishwar Sharma">
</div>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>I am a software engineer with 5+ years of experience in the tech industry. I am passionate about building scalable and reliable software systems.</p>
<p>I am also a strong advocate for diversity and inclusion in the tech industry. I believe that everyone should have the opportunity to succeed in tech, regardless of their background.</p>
</section>
<section id="experience">
<h2>Experience</h2>
<ul>
<li>
<h3>Software Engineer</h3>
<p>Google</p>
<p>2017 - Present</p>
<p>Built and maintained scalable and reliable software systems for Google's search engine.</p>
</li>
<li>
<h3>Software Engineer</h3>
<p>Facebook</p>
<p>2015 - 2017</p>
<p>Developed new features for Facebook's social media platform.</p>
</li>
</ul>
</section>
<section id="education">
<h2>Education</h2>
<ul>
<li>
<h3>Master of Science in Computer Science</h3>
<p>Stanford University</p>
<p>2015</p>
</li>
<li>
<h3>Bachelor of Science in Computer Science</h3>
<p>IIT Bombay</p>
<p>2013</p>
</li>
</ul>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>Programming Languages: Java, Python, C/C++</li>
<li>Web Development: HTML, CSS, JavaScript, React</li>
<li>Databases: MySQL, PostgreSQL, MongoDB</li>
<li>Operating Systems: Linux, Windows</li>
</ul>
</section>
<section id="contact">
<h2>Contact Me</h2>
<p>Email: [email protected]</p>
<p>Phone: 123-456-7890</p>
</section>
</main>
<footer>
<p>Copyright © Your Name</p>
</footer>
</body>
</html>