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

improved Contact Us #47

Merged
merged 1 commit into from
Oct 27, 2022
Merged
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
6 changes: 3 additions & 3 deletions Contact/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ <h1>Contact Us</h1>
</div>
<div class="div2">
<form action="" method="get">
<input type="text" placeholder="Your Name" class="inpt" style="margin: 5px; margin-top: 25px; height: 30px; margin-left: 20px; width:45%; float:left;" />
<input type="email" placeholder="Your Email" class="inpt" style="margin: 5px; margin-top: 25px; height: 30px; width: 40%; float: left;" />
<br><input type="text" placeholder="Subject" class="inpt" style="margin: 5px; margin-top: 20px; margin-left: 20px; height: 30px; width:89%;" />
<input type="text" placeholder="Enter Name" class="inpt" style="margin: 5px; margin-top: 25px; height: 30px; margin-left: 20px; width:45%; float:left;" />
<input type="email" placeholder="Enter Email" class="inpt" style="margin: 5px; margin-top: 25px; height: 30px; width: 40%; float: left;" />
<br><input type="text" placeholder="Enter Subject" class="inpt" style="margin: 5px; margin-top: 20px; margin-left: 20px; height: 30px; width:89%;" />
<br><textarea rows="9" placeholder="Messsage" cols="70" class="inpt" style="margin: 5px; margin-top: 20px; margin-left: 20px;"></textarea>
<br><button type="submit" onclick="" class="sendBtn">Send Message</button>
</form>
Expand Down
22 changes: 15 additions & 7 deletions Contact/styles.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

body {
margin: 50px;
background-color: #8c8c8c;
margin: 45px;
background-color: #96f0f4;
}

.header {
Expand All @@ -16,20 +17,24 @@ body {
float: left;
margin-left: 10px;
}

.rect1:hover{
background-color: #7bb2e3;
}
.rect2:hover{
background-color: #7bb2e3;
}
.div2 {
width: 500px;
height: 390px;
float: left;
margin-right: 40px;
box-shadow: rgb(0 0 0 /60%) 0 2px 8px;
background-color: #e5e5e5;

transition: background-color 0.5s ease-in-out;
border: 2px solid rgba(0, 0, 0, 0.039);
}
.div2:hover{
background-color: rgba(167, 167, 167, 0.767);
/* border: 1px solid black; */
background-color: rgba(167, 167, 167, 0.811);
}
button {
color: #ffffff;
Expand Down Expand Up @@ -86,7 +91,10 @@ textarea {
margin-left: 20px;
margin-top: 20px;
}

.sendBtn{
background-color: rgb(5, 55, 55);
border: 1px solid white;
}
.sendBtn:hover {
cursor: pointer;
background-color: rgb(48, 129, 235);
Expand Down