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

Create ContactForm.html #7

Merged
merged 1 commit into from
Oct 18, 2023
Merged
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
77 changes: 77 additions & 0 deletions ContactForm.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<!DOCTYPE html>
<head>
<title>Contact Form</title>
<style>
.contact{
width: 382px;
overflow: hidden;
margin: auto;
margin: 20 0 0 450px;
padding: 85px;
background: orange;
border-radius: 21px ;
}
h2{
text-align: center;
color: lightgreen;
font-size:45px;
}
label{
color: blue;
font-size: 21px;
}
.Name{
width: 300px;
height: 30px;
border: none;
border-radius: 5px;
padding-left: 9px;
}
.button{
padding: 5px 13px;
display: inline-block;
text-align: center;
font-size: 25px;
cursor: pointer;
font-family: Algerian;
}
.button1 {
background-color: red;
color: lightgreen;
}
.button1:hover {
background-color: green;
color: white;
}

</style>
</head>
<body background="P3.jpg">
<h2><u>Contact Us</u></h2><br>
<div class="login">
<form class="contact" method="get" action="contact.php">
<label><b>Your Name
</b>
</label>
<input type="text" name="Yname" class="Name">
<br><br>
<label><b>Your Mail
</b>
</label>
<input type="text" name="Mail" class="Name">
<br><br>
<label><b>Your Phone No.
</b>
</label>
<input type="text" name="Phoneno." class="Name">
<br><br>
<label><b>Your Message
</b>
</label>
<input type="text" name="Message" class="Name">
<br><br><br>
&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<input type="submit" class="button button1" border="1" value="Submit"/>
</form>
</div>
</body>
</html>