-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact_us.html
90 lines (74 loc) · 3.71 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CARING AND SHARING</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Sigmar+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Fredoka+One&family=Pacifico&display=swap" rel="stylesheet">
<link rel="stylesheet" href="common.css">
<link rel="stylesheet" href="contactus.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark sticky-top" id="navigation">
<div class="container-fluid">
<div>
<a class="navbar-brand heading" href="#">Caring And Sharing</a>
</div>
<button class="navbar-toggler collapsed custom-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent1" aria-controls="navbarSupportedContent1" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse navLinks" id="navbarSupportedContent1">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item navItems">
<a class="nav-link other-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item navItems">
<a class="nav-link other-links" href="about_us.html">About Us</a>
</li>
<li class="nav-item navItems">
<a class="nav-link active" href="contact_us.html">Contact Us</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="contact-title">
<h1>Say Hello</h1><br>
<h2>We are always ready to Serve you!!!</h2>
</div>
<center>
<div class="contact-form">
<form id="contact-form" method="post" action="contactus_handler.php">
<input name="name" type="text" class="form-control" placeholder="Your Name" required>
<br>
<input name="email" type="email" class="form-control" placeholder="Your Email" required>
<br>
<textarea name="message" class="form-control" placeholder="Message" row="4" required></textarea><br>
<input name="submit" type="submit" class="form-control submit" value="SEND MESSAGE" >
</form>
</div></center>
<!-- footer starts here -->
<footer>
<br>
<div class="row text-center">
<div class="col-md-6 text-center">
<ul class="social-icons">
Contact Me:
<li><a target="_blank" class="github" href="https://github.com/Nshravankumar4"><i class="fab fa-github fa-2x"></i></a></li>
<li><a target="_blank" class="linkedin" href="https://www.linkedin.com/in/nshravankumar4/"><i class="fab fa-linkedin fa-2x"></i></a></li>
<li><a target="_blank" class="youtube" href="https://www.youtube.com/@nshravankumar4"><i class="fab fa-youtube fa-2x"></i></a></li>
</ul>
</div>
<div class="col-md-6">
<p>Developed by NUNSAVATH SHRAVAN KUMAR</p>
</div>
</div>
</footer>
<!-- footer ends here -->
</body>
</html>