-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
127 lines (112 loc) · 4.98 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CONTACT</title>
<link rel="stylesheet" href="website.css">
<script src="https://kit.fontawesome.com/dcd30a2475.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<a href="website.html">HOME</a>
<a href="about.html">ABOUT</a>
<a href="history.html">HISTORY</a>
<a href="contact.html">CONTACT</a>
<a href="more.html">MORE</a>
<div class="float-right">
<a class="btn btn-primary" href="login.html">LOGIN</a>
<a class="btn btn-warning right" href="register.html">REGISTER</a>
</div>
</nav>
<!-- Header Section -->
<header class="p-5">
<h2 class="text-centre">CONTACT US</h2>
</header>
<!-- Main Content -->
<div class="container m-3">
<div class="row">
<!-- Contact Information -->
<div class="col-12 col-md-6">
<h3 class="text-center">FOUNDER INFORMATION</h3>
<p>
<strong>NAME:</strong> ANKIT KUMAR<br>
<strong>EMAIL:</strong> user07@gmail.com<br>
<strong>PHONE NO:</strong> +6485937<br>
<strong>ADDRESS:</strong> BIHAR, INDIA (851211)
</p>
</div>
<!-- Contact Form -->
<div class="col-12 col-md-6">
<div class="p-3 border">
<form action="contact_process.php" method="post">
<div class="form-group">
<label for="name">NAME :</label>
<input type="text" id="name" name="name" placeholder="Enter your full name" required>
</div>
<div class="form-group">
<label for="email">EMAIL ID :</label>
<input type="email" id="email" name="email" placeholder="Enter your email address" required>
</div>
<div class="form-group">
<label for="phone">PHONE NO :</label>
<input type="text" id="phone" name="phone" placeholder="Enter your phone number" required>
</div>
<div class="form-group">
<label for="subject">PROBLEM :</label>
<select id="subject" name="subject" required>
<option selected disabled>- Select -</option>
<option value="problem1">WEBSITE ERROR</option>
<option value="problem2">CONNECTION (MEMBERSHIP)</option>
<option value="problem3">FEEDBACK</option>
</select>
</div>
<div class="form-group">
<label for="description">DESCRIPTION :</label>
<textarea id="description" name="description" placeholder="Enter your full description" rows="3" required></textarea>
</div>
<button type="submit" class="btn btn-primary">SUBMIT</button>
</form>
</div>
</div>
</div>
</div>
<!------------------- Footer --------------------------------------------------------->
<footer class="footer">
<div class="row2">
<div class="col">
<img src="logo.png" class="logo">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
</div>
<div class="col">
<h3>Office <div class="underline"><span></span></div></h3>
<p>07 street , CHHOTI BALLIA</p>
<p>LAKHMINIA , BEGUSARAI</p>
<p>BIHAR , PIN - 851211, INDIA</p>
<p class="email-id">ankitpoddar07++@gmail.com</p>
<h4>+91 - 0123456789</h4>
</div>
<div class="col">
<ul>
<h3>Links <div class="underline"><span></span></div></h3>
<li><a href="website.html">Home</a></li>
<li><a href="">Services</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="history.html">History</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="social-icons">
<i class="fa-brands fa-facebook"></i>
<a href="https://x.com/ankitpo47153377"><i class="fa-brands fa-twitter"></i></a>
<i class="fa-brands fa-whatsapp"></i>
<a href="https://x.com/ankitpo47153377"><i class="fa-brands fa-pinterest"></i></a>
<a href="https://www.instagram.com/ankitpoddar_/"><i class="fa-brands fa-square-instagram"></i></a>
</div>
</div>
</div>
<hr>
<p class="copyright">Copyright @ 2023 - All Rights Reserved to Ankit Poddar</p>
</footer>
</body>
</html>