Assignment2
Assignment2
Assignment No. 2
1. Title: -
Design a static website using HTML, CSS & Bootstrap.
2. Objectives: -
Understand basic concepts of HTML, CSS & Bootstrap.
3. Problem Statement: -
Implement a web page index.htm for any client website (e.g., a restaurant website
project) using following:
a. HTML syntax: heading tags, basic tags and attributes, frames, tables, images, lists,
links for text and images, forms etc.
b. Use of Internal CSS, Inline CSS, External CSS.
4. Problem Outcome: -
Students will be able to understand
1. Design static webpages using HTML.
2. Apply CSS on web sites.
3. Apply CSS Bootstrap on web sites.
5. Hardware & Software Requirement: -
6. Theory Concepts: -
a. What is HTML?
HTML: HTML is the standard markup language for creating Web pages.
HTML stands for Hyper Text Markup Language
HTML describes the structure of Web pages using markup
HTML elements are the building blocks of HTML pages
HTML elements are represented by tags
HTML tags label pieces of content such as "heading", "paragraph", "table", and so
on
Browsers do not display the HTML tags, but use them to render the content of
the page
b. What is CSS?
CSS stands for Cascading Style Sheet. It is nothing, but design language intended
to simplify the process of making web pages presentable.CSS handles the feel and
look part of a web page.By using CSS, one can control the color of text, style of
fonts, spacing between paragraphs, layout designs.
Department of Computer Engineering Army Institute of Technology, Pune
4 | Page Web Technology Lab
Register.html
<html>
<head>
<link rel="stylesheet" type="text/css" href="Stylesheet1.css">
<title>Registration Window</title>
</head>
<body>
<form name='Registration'>
<table border="2" width="90%" align="center" bgcolor="cyan">
<tr align="center">
<td><img src="logo.jpg" width="150" height="40"></td>
<td><h1>Registration Form</h1></td>
</tr>
<tr>
<td colspan="3"><marquee><a href="Login.html">Already Registered Click
Here</a></marquee></td>
</tr>
</table>
<table width="90%" border="2" align="center" bgcolor="pink">
<tr>
<td rowspan="2"><b>    Full Name: </b></td>
<td align="center"><input type="text" name="fname" maxlength="50"
size="25" placeholder="Enter First Name"required></td>
<td align="center"><input type="text" name="lname" maxlength="50"
size="25" placeholder="Enter Last Name"required></td>
</tr>
<tr align="center">
<td><b>First Name</b></td>
<td><b>Last Name</b></td>
</tr>
<tr>
<td ><b>     Gender</b></td>
<td>    <input type="radio" name="sex"
value="Male"/>Male     <input type="radio" name="sex"
value="Female"/>Female     <input type="radio"
name="sex" value="Other"/>Other</td>
</tr>
<tr>
<td><b>    Date of Birth</b></td>
<td colspan="2">    <input type="Date"
name="DOB"/></td>
</tr>
<tr>
<td><b>    Mobile Number</b></td>
<td colspan="2">    <input type="text"
placeholder="Enter Mobile Number" name="mono" size="10"
maxlength="10"/></td>
</tr>
<tr>
<td><b>    Email</b></td>
<td colspan="2">    <input type="text"
placeholder="Enter Email Id" name="email"/></td>
</tr>
<tr>
<td ><b>    User Name</b></td>
Output
9. Conclusion: -
From above assignment I have conclude that: ________________________________
10. Programming Questions (Submit code files on Moodle & Code print):
a. Create a Book Catalogue web page: The catalogue page should contain the
details of all the books available in the web site in a table. The details should
contain the following: Snap shot of Cover Page, Author Name, Publisher, Price,
Add to cart button. For this page use HTML, CSS & Bootstrap.
b. Write a HTML program for time-table using tables, Text formatting tags.