-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact us.html
151 lines (132 loc) · 3.67 KB
/
Contact us.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!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="Aboutus.css">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
margin: 0;
padding: 0;
}
/* Header Styles */
.header {
text-align: center;
background-color: #242323;
color: #fff;
padding: 20px;
}
/* Navigation Styles */
nav {
background-color: #007BFF;
text-align: center;
padding: 10px;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}
/* Container Styles */
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(247, 245, 245, 0.2);
}
h1 {
font-size: 36px;
color: #f2f1f1;
}
.contact-form {
margin: 20px 0;
}
.contact-form label {
font-size: 16px;
color: #333;
}
.contact-form input, .contact-form textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
.contact-form button {
background-color: #007BFF;
color: #fff;
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 18px;
cursor: pointer;
}
.contact-form button:hover {
background-color: #0056b3;
}
nav {
background-color: #333;
overflow: hidden;
}
nav a {
text-decoration: none;
padding: 20px;
text-align: center;
float: left;
color: white;
}
nav a:hover{
background: rgb(83, 83, 83);
color: #007BFF;
transition: transform 0.2s ease;
}
</style>
</head>
<body>
<header class="header">
<h1>CONTACT US</h1>
</header>
<nav>
<a href="Home.html">Home</a>
<a href="collegereviews.html">College Reviews</a>
<a href="cutoff.html">Cutoffs</a>
<a href="Aboutus.html">About Us</a>
<a href="Contact us.html">Contact Us</a>
</nav>
<div class="container">
<form class="contact-form">
<div>
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div>
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div>
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<div>
<button type="submit">Send Message</button>
</div>
</form>
</div>
<footer>
<div class="footer-contact">
<h3>Contact Us</h3>
<p>Email: [email protected]</p>
<p>Phone: 022 2433 0922</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 Student Admission Council. All Rights Reserved.</p>
</div>
</footer>
</body>
</html>