-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1411 from Naman-pokhriyal/namanPokhriyal
Added resume webpage
- Loading branch information
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Resume Builder</title> | ||
</head> | ||
<body> | ||
<div class="landing" align="center" style="border-bottom: solid 1px black;"> | ||
<img src="" alt="Naman Pic" /> | ||
<h3>Naman Pokhriyal</h3> | ||
<ul class="links" style="list-style: none;""> | ||
<span style="padding: 0 10px"><img src="" alt="home:" width="10px"/>Pacific Golf Estate</span> | ||
<span style="padding: 0 10px"><img src="" alt="Ph." width="10px"/>8639326519</span> | ||
<span style="padding: 0 10px"><a href="www.linkedin.com"><img src="./Capture.JPG" alt="Ln" width="10px"/>LinkedIn</a> | ||
</span> | ||
</ul> | ||
</div> | ||
<div class="content" style="display: flex; justify-content: space-around;"> | ||
<div class="skills" style="border-right: solid 1px black; padding-right: 100px;"> | ||
<h4>SKILLS</h4> | ||
<ul class="skill"> | ||
<li>Java</li> | ||
<li>HTML/CSS</li> | ||
<li>JavaScript</li> | ||
<li>ReactJS</li> | ||
</ul> | ||
</div> | ||
<div class="work"> | ||
<h4>WORK EXPERIENCE</h4> | ||
<div class="w1"> | ||
<h5>Molog</h5> | ||
<p class="date"><input type="date">-<input type="date"></p> | ||
<ul class="about"> | ||
<h5>Duties</h5> | ||
<li>Implementing frontend features</li> | ||
<li>Managing Database</li> | ||
<li>Enhansing user experience</li> | ||
</ul> | ||
</div> | ||
<div class="edu"> | ||
<h4>EDUCATION DETAILS</h4> | ||
<table border="2px" align="center"> | ||
<tr align="center"> | ||
<th colspan="2">DIT University</th> | ||
</tr> | ||
<tr align="center"> | ||
<th>Course</th> | ||
<th>%</th> | ||
</tr> | ||
<tr align="center"> | ||
<td>B.Tech</td> | ||
<td>82</td> | ||
</tr> | ||
<tr align="center"> | ||
<td>M.Tech</td> | ||
<td>90</td> | ||
</tr> | ||
</table> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |