mirror of
https://github.com/Hizenberg469/BPIT-ATTENDANCE.git
synced 2026-04-19 17:52:25 +03:00
initial commit
This commit is contained in:
39
manish/Contact us page/index.html
Normal file
39
manish/Contact us page/index.html
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Contact Us</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1 align="center">
|
||||
<font face="Helvetica">
|
||||
Contact Us
|
||||
</font>
|
||||
</h1>
|
||||
<hr color="#22DFF6" size="8" width="7%"/>
|
||||
|
||||
<table cellpadding="10" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td width="50%">
|
||||
<form >
|
||||
<label for="name">Name <span>*</span></label>
|
||||
<input id="name" type="text" required="required" />
|
||||
<label for="email">E-mail <span>*</span></label>
|
||||
<input id="email" type="email" required="required" />
|
||||
<label for="tel">Phone number <span>*</span></label>
|
||||
<input id="tel" type="tel" required="required" />
|
||||
<label for="subject">Subject <span>*</span></label>
|
||||
<input id="subject" type="text" required="required" />
|
||||
<label for="message">Message <span>*</span></label>
|
||||
<textarea id="message" rows="5" required="required"></textarea>
|
||||
<input type="submit" value="SEND YOUR MESSAGE" />
|
||||
</form>
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
55
manish/Contact us page/style.CSS
Normal file
55
manish/Contact us page/style.CSS
Normal file
@@ -0,0 +1,55 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
table {
|
||||
padding: 0 3px;
|
||||
}
|
||||
table td {
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
label {
|
||||
display: block;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
span {
|
||||
color: #2FB3CD;
|
||||
}
|
||||
input {
|
||||
border: 1px solid #ccc;
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
outline: none;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
input[type=submit] {
|
||||
background-color: #0DBFDC;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
margin-top: 40px;
|
||||
border-radius: 4px;
|
||||
width: 100%;
|
||||
}
|
||||
textarea {
|
||||
border: 1px solid #ccc;
|
||||
width: 100%;
|
||||
padding: 10px;
|
||||
outline: none;
|
||||
min-height: 80px;
|
||||
resize: vertical;
|
||||
}
|
||||
@media only screen and (min-width: 768px) {
|
||||
table {
|
||||
padding: 30px 80px 0 80px;
|
||||
}
|
||||
table td {
|
||||
width: 50%;
|
||||
display: inline-block;
|
||||
}
|
||||
textarea, input {
|
||||
width: 80%;
|
||||
}
|
||||
input[type=submit] {
|
||||
width: fit-content;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user