IWT Assignment-01 HTML
IWT Assignment-01 HTML
01 [HTML]
Submitted By: Amanpreet Dutta
Department : CSE Session: July-December 2022
Name of Faculty: Ankit Chopra Semester V
Subject: Internet & Web Technology Subject Code: CS-504(A)
Date of Issue: 23-08-22 Date of Submission: 05-09-22
Q.1 Create your resume using HTML tags also experiment with paragraph, colours,
text, link, size and also other style tags with attributes.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Resume</title>
</head>
<body>
<div class="box">
<div class="header">
<div class="header-left">
<div class="name">
<h1 class="first-name">AMANPREET</h1>
<h1 class="last-name">DUTTA</h1>
</div>
</div>
<div class="header-right">
<div class="email">
<p>[email protected]</p>
<i class="fas fa-envelope"></i>
</div>
<div class="github">
<p>github.com/packetcode</p>
<i class="fab fa-github"></i>
</div>
<div class="phone">
<p>+91-7432089021</p>
<i class="fas fa-phone"></i>
</div>
</div>
</div>
<hr />
<div class="objective">
<div class="obj-heading grey">
<i class="fas fa-bullseye icon"></i>
<h2>Objectve</h2>
</div>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Dicta rem,
sit ex accusamus quisquam incidunt tempora, alias recusandae error
perspiciatis a nihil quibusdam ea, tenetur harum. Earum doloribus
quisquam repellendus!
</p>
</div>
<div class="education">
<div class="ed-heading grey">
<i class="fas fa-school icon"></i>
<h2>Education</h2>
</div>
<table>
<tr>
<th>Board</th>
<th>Institution</th>
<th>Year of passing</th>
<th>Percentage/GPA</th>
</tr>
<tr>
<td>B-Tech</td>
<td>PIEMR</td>
<td>2024</td>
<td>90%</td>
</tr>
<tr>
<td>12th</td>
<td>India International School</td>
<td>2019</td>
<td>87.2%</td>
</tr>
<tr>
<td>10th</td>
<td>India International School</td>
<td>2017</td>
<td>95%</td>
</tr>
</table>
</div>
<div class="skills">
<div class="skills-heading grey">
<i class="fas fa-tools icon"></i>
<h2>Skills</h2>
</div>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
<li>jQuery</li>
<li>PHP</li>
<li>MySQL</li>
</ul>
</div>
<div class="activities">
<div class="act-heading grey">
<i class="fab fa-creative-commons-nd icon"></i>
<h2>Activities</h2>
</div>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quasi
reprehenderit libero eum maiores quidem assumenda laboriosam fugit!
Fuga molestias similique perspiciatis expedita minima dolorem
mollitia
repellat ipsum, minus laudantium esse voluptatibus. Maiores sequi,
officia eum obcaecati in atque unde suscipit consequuntur nihil, sed
aliquid! Sed et nam aut dolorem fugit.
</p>
</div>
</div>
</body>
</html>
Create a web page using frame and frameset. Divide the page into two parts
(Topic and Description) with Navigation links on left hand side of page
Q.2 (width=30%) and content page on right hand side of page (width = 70%). On
clicking the navigation Links corresponding content must be shown on the
right hand side.
Create a responsive table for Class Time Table, and add a container element
Q.3 with overflow-x:auto around the <table>
Design the following static web pages required for an organization’s web site.
a) Home Page: The static home page must contain three frames (Menus,
Content area, Footer)
Q.4
b) Login Page (With taking Id, Password redirecting to Home Page of User)
c) Registration Page (Taking all basic information of user)