Assignment 1 Code
Assignment 1 Code
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 :
iii. Use Simple formating Tag (Bold / Italics / Underline / SuperScript / SubScript / Strong etc.)
iV. Use Paragraph Tag with different alignment (Left / Right / Center / Justify)
<!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-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>
</center>
<b><h4>Summary</h4></b>
<b><h4>Skill Highlights</h4></b>
<ul>
<li>Optimization</li>
<li>API design</li>
</ul>
<b><h4>Expertise Knowledge</h4></b>
<ul>
</ul>
<b><h4>Educational Qualification</h4></b>
<b><h4>Technical Qualification</h4></b>
<b><h4>Personal Details</h4></b>
Hobbies : Singing</pre><br>
<hr style="position: absolute; width: 5%; height: 2px; background-color: black; left: 67.5%;
top: 93%;">
</font>
</div>
</body>
</html>