-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactus.html
70 lines (67 loc) · 2.67 KB
/
contactus.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
<!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="contactus.css">
</head>
<body>
<nav class="navbar">
<div class="logo">
<a href="./index.html">
CODE<span style="color: #ff6f61;">FOAD</span>
</a>
</div>
<ul class="navigationlinks">
<li><a href="./index.html">Home</a></li>
<li class="tutdropdown">
<a>Tutorials</a>
<ul class="tutorialdropdownitems">
<li><a href="./python1.html">Python Essentials</a></li>
<li><a href="./bashscripting.html">Bash Scripting</a></li>
<li><a href="./html.html">HTML</a></li>
<li><a href="./css.html">CSS</a></li>
</ul>
<li><a href="./index.html#aboutus">About Us</a></li>
<li><a href="./contactus.html">Contact</a></li>
<li><a href="./login.html" class="loginbutton">Login</a></li>
</ul>
</nav>
<div class="contactus">
<div class="contactuscontainer">
<div class="contactusinformation">
<h1>Contact Us</h1>
<p>We'd love to hear from you! Reach out to us using the details below or fill out the form to send us a message.</p>
<div class="Information">
<h4>Address</h4>
<p>Your space hostel, Revell Orchid Porwal Road Lohegaon, Pune 412001 </p>
</div>
<div class="Information">
<h4>Email</h4>
<p>[email protected]</p>
</div>
<div class="Information">
<h4>Phone</h4>
<p>+91-1234567890</p>
</div>
</div>
<div class="contactusform">
<h2>Send Us a Message</h2>
<form>
<div class="form-group">
<input type="text" name="name" id="name" placeholder="Your Name" required>
</div>
<div class="form-group">
<input type="email" name="email" id="email" placeholder="Your Email" required>
</div>
<div class="form-group">
<textarea name="message" id="message" rows="6" placeholder="Your Message" required></textarea>
</div>
<button type="submit">Send Message</button>
</form>
</div>
</div>
</div>
</body>
</html>