To develop a static company website to display the softwares and services provided by the company.
Requirement collection.
Creating the layout using HTML and CSS.
Updating the sample content.
Choose the appropriate style and color scheme.
Validate the layout in various browsers.
Validate the HTML code.
Publish the website in the given URL.
## home.html
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TCS</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
}
.banner {
width: 100%;
height: 100vh;
background-image: linear-gradient(rgba(242, 241, 241, 0.75),rgba(242, 241, 241, 0.75));
background-size: cover;
background-position: center;
}
.navbar {
width: 85%;
margin: auto;
padding: 35px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
color:#8849d5;
font-size: 40px;
font-weight: 700;
letter-spacing: 3px;
}
span {
color: gray;
}
form {
width: 300px;
height: 40px;
display: flex;
background: rgba(255, 255, 255, 0.2);
padding: 1px 1px;
font-size: 15px;
border-radius: 10px;
backdrop-filter: blur(4px) saturate(180%);
}
form input {
background: transparent;
flex: 1;
border: 0;
outline: none;
padding: 12px 20px;
font-size: 15px;
color: gray;
}
::placeholder {
color: gray;
}
form button {
border: 0;
outline: none;
padding: 5px 20px;
color: gray;
border-radius: 10px;
background:#8849d5;
cursor: pointer;
}
.navbar li {
list-style: none;
display: inline-block;
margin: 0 20px;
position: relative;
}
.navbar li a {
text-decoration: none;
color: gray;
text-transform: uppercase;
}
.navbar li:hover {
border: 1px;
padding: 10px;
color: gray;
background-color:#8849d5;
transition: 0.5s;
cursor: pointer;
border-radius: 30px;
}
.content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
text-align: center;
}
.text h2 {
color: gray;
font-weight: 800;
font-size: 50px;
letter-spacing: 3px;
}
.text p {
color: gray;
text-transform: capitalize;
font-size: 15px;
margin-bottom: 30px;
word-spacing: 2px;
letter-spacing: 1px;
}
.login {
margin: 0px 10px;
border: 2px solid#8849d5;
padding: 13px 35px;
letter-spacing: 1px;
color: gray;
border-radius: 30px;
background-color:#8849d5;
text-decoration: none;
}
.login:hover {
border: 2px solid#8849d5;
color:#f775db;
background-color: gray;
transition: 0.5s;
cursor: pointer;
}
.signup {
margin: 0px 10px;
border: 2px solid#8849d5;
padding: 13px 35px;
letter-spacing: 1px;
color: gray;
border-radius: 30px;
background-color:#8849d5;
text-decoration: none;
}
.signup:hover {
border: 2px solid#8849d5;
color:#8849d5;
background-color: gray;
transition: 0.5s;
cursor: pointer;
}
footer {
background-color:#8849d5;
margin-top: auto;
}
</style>
</head>
<body>
<div class="banner">
<br>
<div class="navbar">
<h1 class="logo"></h1>
<ul>
<li><a href="http://127.0.0.1:8000/static/home.html"> Home </a></li>
<li><a href="http://127.0.0.1:8000/static/product.html"> Products </a></li>
<li><a href="http://127.0.0.1:8000/static/person.html"> People </a></li>
<li><a href="http://127.0.0.1:8000/static/contact.html"> Contact </a></li>
</ul>
<form action="" method="get">
<input type="text" placeholder="Enter to Search">
<button type="submit"> Search </button>
</form>
</div>
<div class="content">
<div class="text">
<h2> TCS</h2>
<br>
<p>TCS, a global leader in IT services, consulting, and business solutions,
leverages technology for business transformation and helps catalyze change. </p>
<br>
<div>
<a href="#" class="login"> Log In </a>
<a href="#" class="signup"> Sign Up </a>
</div>
</div>
</div>
</div>
<footer>
<center> Designed and Developed by SENTHAMIZH (212221040150) </center>
</footer>
</body>
</html>
## person.html
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> people page </title>
<style type="text/css">
* {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
}
.banner {
width: 100%;
height: 100vh;
background-image: linear-gradient(rgba(242, 241, 241, 0.75),rgba(242, 241, 241, 0.75));
background-size: cover;
background-position: center;
}
.navbar {
width: 85%;
margin: auto;
padding: 35px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.bg-people {
border: 1px;
padding: 10px;
color: gray;
background-color:#8849d5;
border-radius: 30px;
}
.logo {
color:#8849d5;
font-size: 40px;
font-weight: 700;
letter-spacing: 3px;
}
span {
color: gray;
}
form {
width: 300px;
height: 40px;
display: flex;
background: rgba(255, 255, 255, 0.2);
padding: 1px 1px;
font-size: 15px;
border-radius: 10px;
backdrop-filter: blur(4px) saturate(180%);
}
form input {
background: transparent;
flex: 1;
border: 0;
outline: none;
padding: 12px 20px;
font-size: 15px;
color: gray;
}
::placeholder {
color: gray;
}
form button {
border: 0;
outline: none;
padding: 5px 20px;
color: gray;
border-radius: 10px;
background:#8849d5;
cursor: pointer;
}
.navbar li {
list-style: none;
display: inline-block;
margin: 0 20px;
position: relative;
}
.navbar li a {
text-decoration: none;
color: gray;
text-transform: uppercase;
}
.navbar li:hover {
border: 1px;
padding: 10px;
color: gray;
background-color:#8849d5;
transition: 0.5s;
cursor: pointer;
border-radius: 30px;
}
.image {
position: relative;
border: 0;
top: 70px;
background: transparent;
}
.image table {
border: 0;
color: gray;
position: relative;
left: 150px;
}
.image table img {
height: 140px;
width: 140px;
border: 2px solid gray;
padding: 5px;
border-radius: 50%;
}
.image table td {
color:#8849d5;
}
footer {
background-color:#8849d5;
margin-top: auto;
}
</style>
</head>
<body>
<div class="banner">
<br>
<div class="navbar">
<h1 class="logo">TCS</h1>
<ul>
<li><a href="http://127.0.0.1:8000/static/home.html"> Home </a></li>
<li><a href="http://127.0.0.1:8000/static/product.html"> Products </a></li>
<li><a href="http://127.0.0.1:8000/static/person.html" class="bg-people"> People </a></li>
<li><a href="http://127.0.0.1:8000/static/contact.html"> Contact </a></li>
</ul>
<form action="" method="get">
<input type="text" placeholder="Enter to Search">
<button type="submit"> Search </button>
</form>
</div>
<div class="image">
<table cellspacing="20">
<tr align="center">
<td> <img src="dhoni.jpeg"> </td>
<td> <img src="images.jpeg"></td>
<td> <img src="jaddu.jpeg"> </td>
<td> <img src="sky.jpeg"> </td>
<td> <img src="kavya.jpeg" </td>
</tr>
<tr align="center">
<th> DHONI</th>
<th> TENDULKAR</th>
<th> JADDU </th>
<th> SKY </th>
<th> KAVYA </th>
</tr>
<tr align="center">
<td> CEO </td>
<td> CEO, Co-Founder </td>
<td> CTO, Co-Founder </td>
<td> Director </td>
<td> Asst. Director </td>
</tr>
</table>
</div>
</div>
<footer>
<center> Designed and Developed by SENTHAMIZH (212221040150) </center>
</footer>
</body>
</html>
## contact.html
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Contact Us Page </title>
<style type="text/css">
* {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
}
.banner {
width: 100%;
height: 100vh;
background-image: linear-gradient(rgba(242, 241, 241, 0.75),rgba(242, 241, 241, 0.75));
background-size: cover;
background-position: center;
}
.navbar {
width: 85%;
margin: auto;
padding: 35px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.bg-contact {
border: 1px;
padding: 10px;
color: gray;
background-color:#8849d5;
border-radius: 30px;
}
.logo {
color:#8849d5;
font-size: 40px;
font-weight: 700;
letter-spacing: 3px;
}
span {
color: gray;
}
.navbar form {
width: 300px;
height: 40px;
display: flex;
background: rgba(255, 255, 255, 0.2);
padding: 1px 1px;
font-size: 15px;
border-radius: 10px;
backdrop-filter: blur(4px) saturate(180%);
}
.navbar form input {
background: transparent;
flex: 1;
border: 0;
outline: none;
padding: 12px 20px;
font-size: 15px;
color: gray;
}
::placeholder {
color: gray;
}
.navbar form button {
border: 0;
outline: none;
padding: 5px 20px;
color: gray;
border-radius: 10px;
background:#8849d5;
cursor: pointer;
}
.navbar li {
list-style: none;
display: inline-block;
margin: 0 20px;
position: relative;
}
.navbar li a {
text-decoration: none;
color: gray;
text-transform: uppercase;
}
.navbar li:hover {
border: 1px;
padding: 10px;
color: gray;
background-color:#8849d5;
transition: 0.5s;
cursor: pointer;
border-radius: 30px;
}
.box {
display: flex;
column-gap: 40px;
background: transparent;
position: relative;
top: 50px;
}
.box-1 {
height: 400px;
width: 400px;
border: 3px solid gray;
border-radius: 20px;
background: transparent;
position: relative;
left: 250px;
}
.box-2 {
height: 400px;
width: 400px;
border: 3px solid#8849d5;
border-radius: 20px;
background: transparent;
position: relative;
left: 300px;
}
.box-1 form {
display: flex;
color: gray;
background: transparent;
padding: 10px;
font-size: 15px;
position: relative;
top: 15px;
}
.box-1 form input {
background: transparent;
display: flex;
border: 1px solid gray;
border-radius: 10px;
padding: 15px 30px;
font-size: 15px;
color: gray;
position: relative;
top: 30px;
}
.box-1 form textarea {
background: transparent;
color: gray;
padding: 15px 10px;
position: relative;
top: 30px;
left: 30px;
border: 1px solid gray;
border-radius: 10px;
}
.box-1 form button {
border: 0;
outline: none;
padding: 10px 20px;
color: gray;
border-radius: 30px;
background:#8849d5;
cursor: pointer;
position: relative;
top: 50px;
}
.box-2 h2 {
color: gray;
position: relative;
top: 25px;
left: 50px;
font-size: 30px;
}
.box-2 p {
color: gray;
position: relative;
top: 50px;
padding: 10px 80px;
}
.box-2 span {
color:#8849d5;
font-size: 20px;
}
footer {
background-color:#8849d5;
margin-top: auto;
}
</style>
</head>
<body>
<div class="banner">
<br>
<div class="navbar">
<h1 class="logo">TCS</h1>
<ul>
<li><a href="http://127.0.0.1:8000/static/home.html"> Home </a></li>
<li><a href="http://127.0.0.1:8000/static/product.html"> Products </a></li>
<li><a href="http://127.0.0.1:8000/static/person.html"> People </a></li>
<li><a href="http://127.0.0.1:8000/static/contact.html" class="bg-contact"> Contact </a></li>
</ul>
<form action="" method="get">
<input type="text" placeholder="Enter to Search">
<button type="submit"> Search </button>
</form>
</div>
<div class="box">
<div class="box-1">
<form>
<center>
<h1> Contact Us </h1>
<input type="text" placeholder="Your Name">
<br>
<input type="email" placeholder="Your Email">
<br>
<textarea rows="4" cols="40" placeholder="Your Message"> </textarea>
<br>
<button type="submit"> Submit </button>
</center>
</form>
</div>
<div class="box-2">
<h2> Contact Information </h2>
<p> <span>Address</span> : 16/68 raja street,rajan nagar,T nagar,chennai-600082.</p>
<p> <span>Email</span> : [email protected] </p>
<p> <span>Phone</span> : 7397186559 </p>
</div>
</div>
</div>
<footer>
<center> Designed and Developed by SENTHAMIZH (212221040150) </center>
</footer>
</body>
</html>
## product.html
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Product Page </title>
<style type="text/css">
* {
margin: 0;
padding: 0;
font-family: 'Courier New', Courier, monospace;
}
.banner {
width: 100%;
height: 100vh;
background-image: linear-gradient(rgba(242, 241, 241, 0.75),rgba(242, 241, 241, 0.75));
background-size: cover;
background-position: center;
}
.navbar {
width: 85%;
margin: auto;
padding: 35px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.bg-product {
border: 1px;
padding: 10px;
color: gray;
background-color:#8849d5;
border-radius: 30px;
}
.logo {
color:#8849d5;
font-size: 40px;
font-weight: 700;
letter-spacing: 3px;
}
span {
color: gray;
}
form {
width: 300px;
height: 40px;
display: flex;
background: hsla(0, 3%, 77%, 0.2);
padding: 1px 1px;
font-size: 15px;
border-radius: 10px;
backdrop-filter: blur(4px) saturate(180%);
}
form input {
background: transparent;
flex: 1;
border: 0;
outline: none;
padding: 12px 20px;
font-size: 15px;
color: gray;
}
::placeholder {
color: gray;
}
form button {
border: 0;
outline: none;
padding: 5px 20px;
color: gray;
border-radius: 10px;
background:#8849d5;
cursor: pointer;
}
.navbar li {
list-style: none;
display: inline-block;
margin: 0 20px;
position: relative;
}
.navbar li a {
text-decoration: none;
color: gray;
text-transform: uppercase;
}
.navbar li:hover {
border: 1px;
padding: 10px;
color: gray;
background-color:#8849d5;
transition: 0.5s;
cursor: pointer;
border-radius: 30px;
}
.container {
background: transparent;
padding: 10px 5%;
padding-bottom: 100px;
}
.container .box-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
gap: 20px;
}
.container .box-container .box {
color: gray;
box-shadow: 0 5px 10px rgba(0,0,0,.2);
border-radius: 20px;
background: transparent;
border: 1px solid gray;
padding: 30px 20px;
}
.container .box-container .box img {
height: 70px;
border-radius: 20px;
}
.container .box-container .box h3 {
color:#8849d5;
font-size: large;
padding: 10px 0;
}
.container .box-container .box p {
color: gray;
font-size: small;
line-height: 1.5;
}
footer {
background-color:#8849d5;
margin-top: auto;
}
</style>
</head>
<body>
<div class="banner">
<br>
<div class="navbar">
<h1 class="logo">TCS</h1>
<ul>
<li><a href="http://127.0.0.1:8000/static/home.html"> Home </a></li>
<li><a href="http://127.0.0.1:8000/static/products.html" class="bg-product"> Products </a></li>
<li><a href="http://127.0.0.1:8000/static/person.html"> People </a></li>
<li><a href="http://127.0.0.1:8000/static/contact.html"> Contact us</a></li>
</ul>
<form action="" method="get">
<input type="text" placeholder="Enter to Search">
<button type="submit"> Search </button>
</form>
</div>
<div class="image">
<div class="image">
<table cellspacing="20">
<tr align="center">
<td> <img src="bancs.png" width="360" height="360"> </td>
<td> <img src="hobs.jpg"width="360" height="360"></td>
<td> <img src="chroma.png"width="360" height="360"> </td>
<td> <img src="BFSI.jpg"width="360" height="360"> </td>
<td> <img src="ion ERP.png"width="360" height="360"> </td>
</tr>
<tr align="center">
<th> TCS BanCS</th>
<th> TCS HOBS</th>
<th> TCS CHROMA</th>
<th> TCS BFSI</th>
<th> TCS ion ERP</th>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<center> Designed and Developed by SENTHAMIZH (212221040150) </center>
</footer>
</body>
</html>
The program for designing software company website using HTML and CSS is completed successfully.