-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (85 loc) · 2.33 KB
/
index.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
85
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="resume.css" />
</head>
<title>Laxmi's CV</title>
<body>
<div class="full">
<div class="left">
<div class="image">
<img src="profile.jpg" alt="" style="width: 100px; height: 100px;" />
</div>
<div class="Contact">
<h2>Contact</h2>
<p><b>Email Id:</b>[email protected]</p>
<p><b>Mobile no :</b>6360942843</p>
</div>
<div class="Skills">
<h2>Skills</h2>
<ul>
<li><b>Programming Languages : Python, Java, C++</b></li>
<li><b>Frontend : HTML5, CSS3, JavaScript, React</b></li>
</ul>
</div>
<div class="Language">
<h2>Language</h2>
<ul>
<li>English</li>
<li>Hindi</li>
</ul>
</div>
<div class="Hobbies">
<h2>Hobbies</h2>
<ul>
<li>Playing cricket</li>
<li>Swimming</li>
</ul>
</div>
</div>
<div class="right">
<div class="name">
<h1>Laxmi Thapa</h1>
</div>
<div class="title">
<p>B.tech Student</p>
</div>
<div class="Summary">
<h2>Summary</h2>
<p>
My name is Laxmi Thapa and Currently i am pursuing my bachelores in
computer science in cloud technology and information security from
Assam down town university.
</p>
</div>
<div class="Experience">
<h2>Experience</h2>
<h3>C</h3>
<p>1 year</p>
</div>
<div class="Education">
<h2>Education</h2>
<table>
<tr>
<th>University/college</th>
<th>Passing year</th>
<th>percentage/cgpa</th>
</tr>
<tr>
<td>Pole star Acadamy</td>
<td>2020</td>
<td>84.5%</td>
</tr>
<tr>
<td>Inspire Acadamy</td>
<td>2022</td>
<td>68.5%</td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>