-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
130 lines (109 loc) · 5.6 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="navbar" id="#navbar">
<ul class="navbar-list">
<li><a class="navbar-list-items" href="#navbar">About Me</a></li>
<li><a class="navbar-list-items" href="#education">Education</a></li>
<li><a class="navbar-list-items" href="#experience">Experience</a></li>
<li><a class="navbar-list-items" href="#contacts">Contacts</a></li>
</ul>
</div>
<div class="about" id="about-me">
<div class="about-content">
<h1>Hi There!</h1>
<p>Welcome to my website. I am Paari Laishram, an aspiring developer with 1 year of experience in software
testing, looking for a suitable position in software development.
</p>
</div>
<div class="about-image">
<img class="profile-photo" src="./assets/images/paariPhoto.jpeg">
</div>
</div>
<div class="education" id="education">
<div class="education-image">
<img class="graduation" src="./assets/images/gradudation-cap.jpg">
</div>
<div class="education-content">
<h1>Educational Qualifications</h1>
<div class="gradution-body">
<h2> Bachelor of Technology in Computer Science and Engineering</h2>
<p>Bharath Institute of Higher Education and Research, Chennai | 2018 - 2022 | CGPA 8.4</p>
<h2> High School(10+2)</h2>
<p>Little Rose Higher Secondary School, Manipur | 2016 - 2018 | 75%</p>
</div>
</div>
</div>
<div class="experience" id="experience">
<div class="experience-image">
<img class="work-image" src="./assets/images/work.webp">
</div>
<div class="experience-content">
<h1>Work Experience</h1>
<h2>Quality Assurance Associate</h1>
<div class="qa-body">
<p>Accenture | 07/2022 – 12/2023 | Full-time</p>
<p>This role involves using various automation and testing tools for quality assurance purposes to
fulfil
robust delivery of highest quality software products.</p>
<ul>
<li><b>Quality Control:</b> Was part of quality control where my responsibilities involve
ensuring that the product or software meets predefined standards and conducting various
types of testing such as functional testing and regression testing.</li>
<li><b>Developing automation test scenarios and test scripts: </b>My role also involves
designing,
developing,
and maintaining automation test scripts using tools like Selenium, Cucumber, and other
automation
frameworks</li>
<li><b> Fulfilling user stories: </b>User stories are descriptions of desired functionality from an end-user perspective. My role involves understanding these user stories, captured in tools like Jira, and ensuring that the software meets these requirements. And then the functionalities and features are demonstrated to the business team.</li>
</ul>
</div>
<!-- <div class="soc">
<h1>Security Operations Center Intern</h1>
<div class="soc-body">
<p>Socexperts | 05/2023 – 08/2023 | Internship</p>
<p>The role involved monitoring security alerts & developing manuals for effective responses to
security
incidents.
<ul>
<li>Security Operations: Monitoring the security alerts and events generated by various
monitoring
tools, like SIEM, IDS/IPS and firewall.
</li>
<li> Incident Response: Develop playbooks to ensure consistent and effective response to
security incidents.</li>
</ul>
</div>
</div> -->
</div>
</div>
<div id="contacts" class="contacts">
<div class="logo-link">
<h3>Social Links</h3>
<a href="https://www.linkedin.com/in/paari-laishram-92b7021ba/"><img class="linkedin-logo logo-images"
src="./assets/images/In-White-128.png"></a>
<a href="https://github.com/PaariLaishram"> <img class="github-logo logo-images"
src="./assets/images/github-mark-white.png"> </a>
</div>
<div class="personal-contacts">
<h3>CONTACTS</h3>
<li class="myemail"> <img class="email-image" src="./assets/images/email.jpg" /><a
href="mailto:paarilai05@gmail.com">paarilai05@gmail.com</a></li>
<li> <img class="location-image" src="./assets/images/location.png" />
<p>Imphal, Manipur</p>
</li>
<li> <img class="phone-image" src="./assets/images/phone.jpeg" />
<p>+91 - 8731850420</p>
</li>
</div>
</div>
</body>
</html>