<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<title>Document</title>
<style>
body {
background: url('http://www.itversity.com/wp-content/uploads/2017/06/girlsintech.png');
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
/*label {
padding: 12px 20px;
width: 10%;
margin: 8px 0;
display: inline-block;
color: red;
}
input[type=text] {
padding: 12px 20px;
width: 20%;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}*/
</style>
</head>
<body>
<div class="container">
<h1 class="text-primary">Welcome to Youth Spark by Girls In Tech</h1>
<form class="form-horizontal">
<div class="form-group">
<label class="control-label col-sm-2 text-info"><b>Name</b></label>
<div class="col-sm-10">
<input type="text" placeholder="Enter Name" name="name" required>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2 text-info"><b>Contact Number</b></label>
<div class="col-sm-10">
<input type="text" placeholder="Enter Contact Number" name="contact" required>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2 text-info" for="email"><b>Email</b></label>
<div class="col-sm-10">
<input type="text" placeholder="Enter Email Id" name="email" required>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2 text-info"><b>Address</b></label>
<div class="col-sm-10">
<input type="text" placeholder="Enter Address" name="address" required>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="button" class="cancelbtn btn-primary">Cancel</button>
<button type="submit" class="signupbtn btn-primary">Sign Up</button>
</div>
</div>
</form>
</div>
</body>
</html>