-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLetsTalk.html
125 lines (101 loc) · 5.28 KB
/
LetsTalk.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
<html>
<head>
<title>Lets Talk page</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/customerdetails.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" link rel="stylesheet">
</head>
<body>
<center>
<img src="images/logo.png">
<h1>Join with Us</h1>
<h3>We manage Your Event</h3>
<hr/>
</center>
<!-- Header start from here -->
<header>
<div class="menu-bar">
<ul>
<li><a href="Home.html">Home</a></li>
<li><a href="LetsTalk.html">Let's Chat</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Our Works</a></li>
<li><a href="Register.html" class="btn"><span>Sign In</span></a></li>
<li><a href="Register.html" class="btn"><span>Sign Up</span></a></li>
</ul>
</div>
</header>
<!--end of header-->
<script type="text/javascript">
alert ("Please sent your event informations");
</script>
<div class="Contact-title">
<h1>HEY THERE,</h1>
<h2>We are Always ready to serve You!</h2>
</div>
<div class="contact-form">
<form id="contact-form" method="post" action="conn.php">
<input name="name" type="text" class="form-control" placeholder="Your name" required><br>
<input name="name" type="text" class="form-control" placeholder="NIC no" required><br>
<input name="name" type="text" class="form-control" placeholder="Event Type" required><br>
<input name="name" type="text" class="form-control" placeholder="Contact No" maxlength="10" required><br>
<input name="email" type="email" class="form-control" placeholder="Your Email" required><br>
<textarea name="message" class="form-control" placeholder="Description about Event" row="4" required></textarea><br>
<input type="submit" class="form-control submit" value="SEND MESSAGE">
</form>
</div>
<!--Footer start from here-->
<footer>
<div class="body-content">
<div class="footer">
<div class="inner-footer">
<div class="footer-iterms">
</div>
</div>
<div class="inner-footer">
<div class="footer-iterms">
<h2>Company</h2>
<div class="border"></div>
<ul>
<a href=""><li>ABOUT US</li></a>
<a href=""><li>TERMS & CONDITIONS</li></a>
<a href=""><li>FAQ'S</li></a>
<a href="Contact%20US.html"><li>CONTACT US</li></a>
</ul>
</div>
<div class="footer-iterms">
<h2>Resources</h2>
<div class="border"></div>
<ul>
<a href=""><li>HELP & SUPPORT</li></a>
<a href=""><li>SITE MAP</li></a>
</ul>
</div>
<div class="footer-iterms">
<h2>Contact US</h2>
<div class="border"></div>
<ul>
<li><i class="fa fa-map-marker" aria-hidden="true"></i>No1 Duplication road Colombo3</li>
<li><i class="fa fa-phone" aria-hidden="true"></i>0117 544 801</li>
<li><i class="fa fa-envelope" aria-hidden="true"></i>support.ares@gmail.com</li>
</ul>
<div class="social-media">
<a href="https://www.facebook.com/" target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="https://twitter.com/" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="https://instagram.com" target="_blank"><i class="fa fa-instagram" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/" target="_blank"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
<div class="footer-bottom">
<center>copyright © KAVINDU™ 2020 All rights reserved.</center>
</div>
</div>
</footer>
<!--end of footer-->
</body>
</html>