Contact Form design css bootstrap

Contact Form design css bootstrap


1. index.html


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap Contact Form with Yellow Background</title>
<link href="https://fonts.googleapis.com/css?family=Roboto|Courgette|Pacifico:400,700" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> 

<link rel="stylesheet" href="styles.css">

</head>

<body>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 m-auto">
<div class="contact-form">
<h1>Contact Form Design</h1>
<form action="" method="post">
<div class="row">
<div class="col-sm-6">
<div class="form-group">
<label for="inputName">Name</label>
<input type="text" class="form-control" id="Name" name="name" placeholder="Enter Full" required>
</div>
</div>
<div class="col-sm-6">
<div class="form-group">
<label for="inputEmail">Email</label>
<input type="email" class="form-control" id="Email" name="email" placeholder="Enter Email" required>
</div>
</div>
</div>            
<div class="form-group">
<label for="inputSubject">Subject</label>
<input type="text" class="form-control" id="Subject" name="subject" placeholder="Enter Subject" required>
</div>
<div class="form-group">
<label for="inputMessage">Message</label>
<textarea class="form-control" id="Message" name="message" rows="5" placeholder="Enter Message..." 
required></textarea>
</div>
<div class="text-center">
<button type="submit" name="submit" class="btn btn-primary"><i class="fa fa-paper-plane"></i> Send</button>
</div>            
</form>
</div>
</div>
</div>
</div>
</body>
</html>                            


2.styles.css


  
body {
    color#000;
    font-family"Roboto"sans-serif;
    background-imageurl("image/background.jpg");
    background-repeatno-repeatrepeat;
}
.contact-form {
    padding50px;
    margin30px auto;
}   
.contact-form h1 {
    font-size42px;
    font-family'Pacifico'sans-serif;
    margin0 0 50px;
    text-aligncenter;
}
.contact-form .form-group {
    margin-bottom20px;
}
.contact-form .form-control.contact-form .btn {
    min-height38px;
    border-radius2px;
}
.contact-form .form-control {
    border-color#e2c705;
}
.contact-form .form-control:focus {
    border-color#d8b012;
    box-shadow0 0 8px #dcae10;
}
.contact-form .btn-primary {
    min-width250px;
    color#fcda2e;
    background#000;
    margin-top20px;
    bordernone;
}
.contact-form .btn-primary:hover {
    color#fff
}
.contact-form .btn-primary i {
    margin-right5px;
}
.contact-form label {
    opacity0.9;
}
.contact-form textarea {
    resizevertical;
}
.bs-example {
    margin20px;
}



















Reactions

Post a Comment

0 Comments

close