-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
89 lines (89 loc) · 4.12 KB
/
work.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
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Work Experience - Laxman Kafle</title>
<link rel="stylesheet" href="css/style.css">
<style>
.about-me img {
max-width: 200px; /* Adjust the size here */
height: auto;
border-radius: 50%;
margin: 0 auto;
display: block;
}
.social-links img {
width: 24px;
height: 24px;
margin-right: 10px;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="papers.html">Publications</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="work.html">Work Experience</a></li>
</ul>
</nav>
</header>
<main>
<section class="work-experience">
<h1>Professional Experience</h1>
<div class="job">
<h2>Manning’s Consult Pvt. Ltd., Lalitpur, Nepal</h2>
<h3>Geotechnical Engineer/Team Leader</h3>
<p><em>June 2022 – Present</em></p>
<ul>
<li>Led the project “Preparation of Catchment Area Protection Plan of Naumure Multipurpose Project.”</li>
<li>Prepared, designed, and scrutinized structural drawings and designs.</li>
<li>Supervised works ensuring the highest quality performance standards and provided technical services related to Geotechnical Engineering.</li>
</ul>
</div>
<div class="job">
<h2>Sanjivini Consulting, Tulsipur, Nepal</h2>
<h3>Founder and CEO</h3>
<p><em>January 2022 – Present</em></p>
<ul>
<li>Provided consulting services related to geotechnical projects such as landslide mitigation, catchment protection plan, sedimentation, and debris flow.</li>
<li>Supervised related construction works.</li>
<li>Prepared, designed, and scrutinized structural drawings and designs of related structures.</li>
</ul>
</div>
<div class="job">
<h2>Manning’s Consult Pvt. Ltd., Lalitpur, Nepal</h2>
<h3>Civil Engineer</h3>
<p><em>November 2018 – September 2019</em></p>
<ul>
<li>Acted as a site engineer for the construction of health posts and retrofitting of the blood bank building.</li>
<li>Prepared, designed, and scrutinized structural drawings and designs.</li>
<li>Supervised works ensuring the highest quality performance standards.</li>
<li>Acted as a proof consultant for cross-checking designs of complex structures to ensure safety and economy.</li>
</ul>
</div>
<div class="job">
<h2>National Reconstruction Authority (NRA)/CLPIU, Department of Urban Development, Gulmi, Nepal</h2>
<h3>Civil Engineer</h3>
<p><em>December 2017 – November 2018</em></p>
<ul>
<li>Assisted earthquake-affected communities in reconstructing/retrofitting earthquake-safe housing.</li>
<li>Inspected and verified if reconstructed/retrofitted houses adhered to NRA guidelines.</li>
<li>Coordinated with stakeholders and agencies as necessary.</li>
</ul>
</div>
</section>
</main>
<footer>
<p>© 2024 Laxman Kafle</p>
<div class="social-links">
<a href="https://www.facebook.com/laxman.king.kafle/"><img src="images/facebook.jpeg" alt="Facebook"></a>
<a href="https://www.linkedin.com/in/laxman360/"><img src="images/LinkedIn.png" alt="LinkedIn"></a>
<a href="https://www.instagram.com/laxmankafle02/"><img src="images/instagram.png" alt="Instagram"></a>
</div>
</footer>
</body>
</html>