Source Code Sign Up Form 2 PDF
Source Code Sign Up Form 2 PDF
HTML:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>SIGN UP PAGE</title>
</head>
<body>
<div class="container">
<h2>SIGN UP</h2>
<form action="">
<button>Sign Up</button>
</form>
</div>
</body>
</html>
CSS:
body{
font-family: sans-serif;
background: url(img/nature-hd-wallpapers-for-laptop-1366x768-free-download.jpg)
background-size: cover;
.container{
position: absolute;
top: 50%;
left: 50%;
width: 400px;
height: 525px;
padding: 2rem;
background: rgba(1,1,1,0.50);
box-sizing: border-box;
border-radius: 25px;
text-align: center;
.container h2{
color: white;
font-family:cursive;
font-size: 2rem;
font-weight: 100;
}
.container input{
width:70%;
padding:0.8rem;
border:none;
border-radius:20px;
color: whitesmoke;
button{
width:20%;
padding:0.6rem;
border:none;
border-radius:5px;
color: white;
background-color: blue;