Laboratory assignment 01 : introduction to it systems(iis) – HtmL
1. Create an HTML Page for BIODATA / RESUME of your own by using simple HTML tag without using
TABLE tag.(Check
the PDF attachment for designing the page with the same structure)
Some Hints :
i. Use center tag
ii. Use Header Tag (H1... H6) if required.
iii. Use Simple formating Tag (Bold / Italics / Underline / SuperScript / SubScript / Strong etc.)
iV. Use Paragraph Tag with different alignment (Left / Right / Center / Justify)
v. Use Font Tag if required
<!DOCTYPE html>
<html>
<head><title>Bio-Data By Tina</title>
<style>
body{
display: flex;
height: 100vh;
width: 100vw;
justify-content: center;
align-items: center;
.container{
width: 40%;
height: 85%;
border: 2px solid black;
border-style: double;
padding:1% 2%;
</style>
</head>
<body leftmargin="50" rightmargin="50">
<div class="container">
<font face="Bahnschrift">
<center>
<b><h2>TINA MAITY</h2></b>
<b><h3>K.G. ENGINEERING INSTITUTE</h3></b>
<p>WORD NO. 3, COLLEGE ROAD, BISHNUPUR BANKURA - 722122</p>
<p>+(91) 03244 - 252030 # TINA [email protected] # LINKEDIN.COM/TINA_MAITY</p>
</center>
<b><h4>Summary</h4></b>
<hr style="height: 5px;width: 100%; background-color: gray;">
<p align="justify">Software Engineer with experience in all levels of testing, including
performance, functional,integration, system, regression, and user acceptance testing. Supportive
and enthusiastic team player dedicated to streamlining processes and efficiently resolving project
issues.</p>
<b><h4>Skill Highlights</h4></b>
<hr style="height: 5px;width: 100%; background-color: gray;">
<ul>
<li>Agile / Scrum methodology</li>
<li>Performance and scalability</li>
<li>Optimization</li>
<li>API design</li>
</ul>
<b><h4>Expertise Knowledge</h4></b>
<hr style="height: 5px;width: 100%; background-color: gray;">
<pre style="font-family: Bahnschrift;">Software Engineer - 09/2029 to 05/2033
Luna Software, New York</pre>
<ul>
<li>Investigation, design, and implement scalable applications for data identification,
analysis, retrieval, and indexing.</li>
<li>Software design and development while remaining concentrate on client needs.</li>
<li>Estimate interface between hardware and software.</li>
<li>Key members to plan, design, and develop smart solutions.</li>
</ul>
<b><h4>Educational Qualification</h4></b>
<hr style="height: 5px;width: 100%; background-color: gray;">
<pre style="font-family: Bahnschrift;">Higher Secondary : Science – 2023 – Malbandi Ashutosh
Vidyamandir
Secondary : General – 2021 – Malbandi Ashutosh Vidyamandir</pre>
<b><h4>Technical Qualification</h4></b>
<hr style="height: 5px;width: 100%; background-color: gray;">
<pre style="font-family: Bahnschrift;">PhD : COMPUTER SCIENCE ENGINEERING – 2033 – IIT
DELHI
M-Tech : COMPUTER SCIENCE ENGINEERING – 2031 – IIT DELHI
B-Tech : ARTIFICIAL INTELLIGENCE & MACHINE LEARNING – 2029 – BRAINWERE UNIVERSITY
Diploma : Computer Science & Technology – 2027 – KG ENGINEERING INSTITUTE</pre>
<b><h4>Personal Details</h4></b>
<hr style="height: 5px;width: 100%; background-color: gray;">
<pre style="font-family: Bahnschrift;">Name : Tina Maity Fathers Name :
Prasanta Maity
Date of Birth : 02.June.2005 Mothers Name : Champa Maity
Nationality : Indian Gender : Female
Hobbies : Singing</pre><br>
<hr style="position: absolute; width: 5%; height: 2px; background-color: black; left: 67.5%;
top: 93%;">
<p align="right">Signature with Date</p>
</font>
</div>
</body>
</html>