Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Contact Us Page #322

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 92 additions & 0 deletions contact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
*{
margin: 0;
padding: 0;
}
body{
background: rgb(33, 38, 49);
font-size: 14px;
color: white;
font-family: 'Cabin', sans-serif;
font-family: 'Nunito Sans', sans-serif;
font-family: 'Poppins', sans-serif;
}
.container{
width: 80%;
margin: 50px auto;
}
.contact-box{
background: white;
display: flex;
}
.contact-left{
flex-basis: 60%;
padding: 40px 60px;
color: black;
}
.contact-right{
flex-basis: 40%;
padding: 40px;
background: rgb(200, 228, 178);
color: black;
}
h1{
margin-bottom: 10px;

}
.container p{
margin-bottom: 40px;
}
.input-row{
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.input-row .input-group{
flex-basis: 45%;
}
input{
width: 100%;
border: none;
border-bottom: 1px solid #ccc;
outline: none;
padding-bottom: 5px;
}
textarea{
width: 100%;
border: 1px solid #ccc;
outline: none;
padding: 10px;
box-sizing: border-box;
}
label{
margin-bottom: 6px;
display: block;
color: #183D3D;
}
button{
background: #9EB384;
width: 100px;
border: none;
outline: none;
height: 35px;
border-radius: 30px;
margin-top: 20px;
box-shadow: 0px 5px 15px 0px rgba(92, 131, 116);
}
.contact-left h3{
color: #435334;
font-weight: 600;
margin-bottom: 30px;
}
.contact-right h3{
font-weight: 600;
margin-bottom: 30px;
}
tr td:first-child{
padding-right: 20px;


}
tr td{
padding-top: 20px;
}
74 changes: 74 additions & 0 deletions contactus.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> Contact page</title>
<link rel="stylesheet" href="contact.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cabin&family=Nunito+Sans:ital,opsz,wght@0,6..12,700;1,6..12,500;1,6..12,900&family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Connect With Me </h1>
<p>Feel free to get touch with me.</p>
<div class="contact-box">
<div class="contact-left">
<h3>Send your request</h3>
<form>
<div class="input-row">
<div class="input-group">
<label>Name</label>
<input type="text" placeholder="Enter Your Name">
</div>
<div class="input-group">
<label>Mobile</label>
<input type="text" placeholder="Mobile number">
</div>

</div>
<div class="input-row">
<div class="input-group">
<label>Email</label>
<input type="email" placeholder="Enter Your Email">
</div>
<div class="input-group">
<label>Subject</label>
<input type="text" placeholder="Product Demo">
</div>

</div>
<label>Message</label>
<textarea rows="5" placeholder="Your Message"></textarea>
<button typr="Submit">SEND</button>
</form>
</div>
<div class="contact-right">
<h3>Reach Me</h3>
<table>
<tr>
<td>Email </td>
<td>[email protected]</td>
</tr>
<tr>
<td>Phone </td>
<td>+91 000000000</td>

</tr>
<tr>
<td>Address </td>
<td>Village - XXX
post - XXX
Dist - XXX
0000
</td>
</tr>
</table>

</div>
</div>


</div>
</body>
</html>
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h1 id="logoName">Maa-Vimala</h1>
<li><i class="fa-solid fa-info-circle"></i><a href="#about"> About Us </a></li>
<li><i class="fa-solid fa-concierge-bell"></i><a href="#services"> Services </a></li>
<li><i class="fa-solid fa-star"></i><a href="#reviews"> Reviews </a></li>
<li><i class="fa-solid fa-envelope"></i><a href="#contact"> Contact Us </a></li>
<li><i class="fa-solid fa-envelope"></i><a href="contactus.html"> Contact Us </a></li>
</ul>
</nav>
</header>
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -491,4 +491,4 @@ button {
.fa-magnifying-glass:before, .fa-search:before {
content: "\f002";
margin-left: 90px;
}
}