Itse Lab # 11 and 12
Itse Lab # 11 and 12
Name Roll no
Objective:
1. To understand Web Development Technologies i.e. Open and Close Source Technologies.
4. To learn Web Development by making a web page for User Side Scripting using “HTML” for Login
purpose.
Exercise:
Task:
Create a login form that logs into index page in html.
Source Code:
<!DOCTYPE html>
<html>
<head>
<style>
width: 100%;
margin: 8px 0;
display: inline-block;
box-sizing: border-box;
button {
background-color: #04AA6D;
color: white;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
button:hover {
opacity: 0.8;
.cancelbtn {
width: auto;
padding: 10px 18px;
background-color: #f44336;
.imgcontainer {
text-align: center;
img.avatar {
width: 40%;
border-radius: 50%;
.container {
padding: 16px;
span.psw {
float: right;
padding-top: 16px;
/* Change styles for span and cancel button on extra small screens */
display: block;
float: none;
.cancelbtn {
width: 100%;
</style>
</head>
<body>
<h2>Login Form</h2>
<div class="imgcontainer">
</div>
<div class="container">
<label for="uname"><b>Username</b></label>
<label for="psw"><b>Password</b></label>
<label>
</label>
</div>
</div>
</form>
</body>
</html>
Output:
Lab # 12
Server Programming using MY SQL
Web Development Server Side using MYSQL
Objective:
1. To understand the concept of Database and to get to know about MySQL.
2. To study the relational logical structure and to get an idea of Design and Data Entry Mode.
3. To design a Database in XAMPP (MySQL) and insert a table that holds fields and records of
Login information.
Exercise:
Source Code:
<!DOCTYPE HTML>
<html>
<head>
<title>Register Form</title>
</head>
<body>
<table>
<tr>
<td>Name :</td>
</tr>
<tr>
<td>Password :</td>
</tr>
<tr>
<td>Gender :</td>
<td>
</td>
</tr>
<tr>
<td>Email :</td>
</tr>
<tr>
<td>Phone no :</td>
<td>
<option value="977">977</option>
<option value="978">978</option>
<option value="979">979</option>
<option value="973">973</option>
<option value="972">972</option>
<option value="974">974</option>
</select>
</td>
</tr>
<tr>
</tr>
</table>
</form>
</body>
</html>
Output: