-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
111 lines (99 loc) · 4.86 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
<!DOCTYPE html>
<html>
<head>
<meta name="google-site-verification" content="BkJtGkSDAHT9exhaigFtJRcYo6mkxjk2dxZOh7o2eqg" />
<meta name ="viewport" content = "width=device-width, initial-scale=1.0">
<title>Cadeira AI</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<script defer src="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/js/all.min.js"></script>
</head>
<body>
<body style="background-color:black;">
<section class= "header">
<nav>
<a href="index.html"><img src="Images/Cad.png"></a>
<div class="nav-links" id="navLinks">
<i id="timesIcon" class="fa fa-times" onclick="hideMenu()"></i>
<h4>
<li><a href ="index.html">HOME</a></li>
<li><a href ="Product.html" >PRODUCT</a></li>
<li><a href ="Demo.html" class="demo">DEMO</a></li>
<li><a href ="About.html">ABOUT US</a></li>
<li><a href ="Contact.html">CONTACT US</a></li>
</h4>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<div class="text-box">
<p>
</p>
</div>
</section>
<section class="ContacTitle" aria-label="Cadeira AI contact">
<h1>Contact Us</h1>
</section>
<section class = "mail-box" aria-label="Cadeira AI email">
<div>
<p>
At Cadeira AI, we are at the forefront of the artificial intelligence revolution, specializing in cutting-edge solutions that seamlessly blend technology and hospitality. As pioneers in the field, we've developed an innovative AI-driven phone calling service dedicated to making restaurant reservations for our customers. Whether you're planning a special evening out or organizing a corporate event, our AI assistants are here to ensure a seamless and personalized dining experience. Have questions about our services or eager to explore how Cadeira AI can elevate your dining plans? Please reach out through the contact form below.
</p>
</div>
<section class ="contact" id = "contact">
<h2 class ="heading">Contact Us</h2>
<form action="https://api.web3forms.com/submit" method="POST" id="form">
<div class = "input-group">
<div class = "input-box">
<input type="hidden" name="apikey" value="1b4df796-e808-47aa-86bc-f49e32b26d8f" />
<input type ="text" name="full_name" placeholder ="First and Last Name" required="required">
<input type ="email" name="email" placeholder ="Email" required="required">
</div>
<div class="input-box">
<input type="text" name="phone_number" placeholder="Phone Number" required="required">
<input type="text" name="subject" placeholder="Subject" required="required">
</div>
</div>
<div class = "input-group-2">
<textarea name="message" id cols ="30" rows = "10" placeholder="Message" required="required"></textarea>
<input type = "submit" value="Send Message" class="btn">
</div>
</form>
</section>
<!---- Footer---->
<section class="footer" aria-label ="How to connect with Cadeira AI and contact information">
<h2>Connect With Us</h2>
<div class="icons">
<a href="https://www.instagram.com/cadeiraai/" target="_blank"><i class="fab fa-instagram" aria-label = "Cadeira AI Instagram"></i></a>
<a href="https://github.com/CadeiraAI" target="_blank"><i class="fab fa-github" aria-label ="Cadeira AI github"></i></a>
<a href="https://www.linkedin.com/company/cadeira-ia" target="_blank"><i class="fab fa-linkedin" aria-label="Cadeira AI Linkedin"></i></a>
</div>
<p>© Cadeira AI 2024</p>
<p>Made with <i class="fa fa-heart"></i> by Cadeira AI</p>
</section>
<!-------Javascript for toggle menu------->
<script>
var navLinks = document.getElementById("navLinks");
var timesIcon = document.getElementById("timesIcon");
function showMenu() {
navLinks.classList.add("active");
timesIcon.classList.add("active");
}
function hideMenu() {
navLinks.classList.remove("active");
timesIcon.classList.remove("active");
}
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CRMJVCSV0S"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CRMJVCSV0S');
</script>
</body>
</html>