Experiment 1: Create a web page and deploy on a local web server
This experiment demonstrates how to create a simple login page using HTML and CSS and deploy it on a local web server.
Implementation
The implementation consists of two main files:
index.html: Contains the HTML structure of the login formstyles.css: Contains all the styling for the login page
HTML Code (index.html)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="login-container">
<h2>Login</h2>
<form>
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="email" required >
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<button type="submit" class="login-button">Login</button>
</form>
</div>
</body>
</html>
Above HTML code as XHTML Code is given below๐๐๐
XHTML Code (index.xhtml)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login Page</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="login-container">
<h2>Login</h2>
<form action="#" method="post">
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required="required" />
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required="required" />
</div>
<button type="submit" class="login-button">Login</button>
</form>
</div>
</body>
</html>
Note: Use either html or xhtml. Not both. (html is recommended)
CSS Code (styles.css)
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.login-container {
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
width: 300px;
}
.login-container h2 {
margin-bottom: 20px;
text-align: center;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
font-size: 14px;
margin-bottom: 5px;
}
.form-group input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.login-button {
width: 100%;
padding: 10px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.login-button:hover {
background-color: #0056b3;
}
Preview
When properly rendered, the login form appears centered on the page with a clean white background and blue accent colors.
View Implementation
๐ See the live implementation of this login page.