Home page using html and css
- This is image of home page of template using html and css
- There are three different files
- home.html
<head>
<title>Home</title>
<style>
.footer{background-color: tomato;
padding: 23px; }
.nam{padding: 15px;}
</style>
</head>
<body>
<div style="background-color:darksalmon;padding:20px">
<center><h1><font size="9" color="red">Sports</font></h1></center>
</div>
<div class="nam" style="background-color:indianred">
<a href="home.html" color="red" size="5" style="margin-right:50px;border:solid;"><font color="black">Home</font></a>
<a href="reg.html" color="red" size="5" style="margin-right:150px;border:solid"><font color="black">Registration</font></a>
</div><!--prepared by Vishal Rathod -->
<div>
<img src="gh.jpeg" height="365" width="991">
</div>
<div class="footer">
<p>Posted by:Vishal Rathod</p>
<p>Contact information: <a href="http://cquiz.000webhostapp.com">
Visit my Quiz website</a></p>
</div>
</body>
</html>
2.reg.html
<html>
<head>
<title>Home</title>
<link rel="stylesheet" href="me.css">
<style>
.sam{padding: 15px;}
</style>
</body>
<div style="background-color:darksalmon;padding:25px">
<center><h1><font size="9" color="red">Sports</font></h1></center>
</div>
<div class="sam" style="background-color:indianred">
<a href="home.html" color="red" size="5" style="margin-right:50px;border:solid"><font color="black">Home</font></a>
<a href="reg.html" color="red" size="5" style="margin-right:150px;border:solid;"><font color="black">Registration</font></a>
</div><!--prepared by Vishal Rathod -->
<form class="form" action="reg.php" method="post">
<br>First name: <input type="text" name="fname"><br>
<br>Last name: <input type="text" name="lname"><br>
<br><input type="submit" value="Submit"><br>
</form>
<div class="demo">
<p>Prepared by:Vishal Rathod</p>
<p>Contact information: <a href="http://cquiz.000webhostapp.com">
Visit my Quiz website</a></p>
</div>
</body>
</html>
3.me.css
.form{
padding: 50px;
background-color:yellow;
}
.demo{background-color: tomato;
padding: 50px; }
Comments
Post a Comment