-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
40 lines (40 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio website project intern</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="sidebar">
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/intro.html">My Intro</a></li>
<li><a href="/experiance.html">experience</a></li>
<li><a href="/resume.html">Resume</a></li>
<li><a href="/skill.html">skill</a></li>
<li><a href="/Contact Me">Contact Me</a></li>
</ul>
</nav>
</div>
<div class="main">
<div class="infoContainer">
<div class="devInfo">
<div class="Hello">Hi I am </div>
<div class="name">Amit Kumar</div>
<div class="about">Student at JIET, Jodhpur</div>
<div class="moreabout">I am a first-year student of AI & ML Branch. I have a 2-month experience as a Campus Ambassador at Skillwinner.</div>
<div class="buttons">
<button>Download Resume</button>
<button>Contact Me</button>
</div>
</div>
<div class="devPic"><img src="3.jpg" alt="Amit Kumar"></div>
</div>
</div>
</div>
</body>
</html>