-
Notifications
You must be signed in to change notification settings - Fork 1
/
contactus.html
92 lines (65 loc) · 2.47 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Contact Us</title>
<link rel="stylesheet" href="contactus.css" />
<!-- Add web page logo -->
<link rel="icon" href="webpage-logo/contact-us.jpg" type="image/jpg">
</head>
<body>
<nav>
<ul class="nav">
<li class="nav1"><a href="index.html">Home Page</a></li>
<li class="nav1"><a href="takeaction.html"> Take action </a></li>
<li class="nav1"><a href="machinelearning.html"> Our Solution </a></li>
<li class="nav1"><a id = "ACTIVE" href="contactus.html"> Support </a></li>
</ul>
</nav>
<div class = "wrapper">
<div class = "typing">
<h1 id = "contactus" > Support </h1>
</div>
</div>
<center>
<div id = "social_media">
<a href = "https://www.instagram.com"> Instagram </a> <br/>
<a href = "https://www.snapchat.com"> Snapchat </a> <br/>
<a href = "https://www.tiktok.com"> TikTok </a> <br/>
<a href = "https://www.facebook.com"> Facebook </a> <br/>
<a href = "https://www.twitter.com"> Twitter </a>
</center>
</div>
<div class = "all">
<div>
<h1 id = "FAQ" >Frequently Asked Questions </h1>
<div id = "QA">
<p class="faqquestions"> 1. Where is this product sold? </p>
<p> Zeebo is licensed in all countries affiliated with the U.N. </p>
<p class="faqquestions"> 2. What is the cheapest model? </p>
<p> Starts at $799, works at basic function. </p>
<p class="faqquestions"> 3. Who has approved and has used/is using this product? </p>
<p> Many schools worldwide, many manufacture companies, including Costco and Ikea. We've recieved contracts worldwide. </p>
</div>
</div>
<div id = "contact-us">
<h1> Get in touch with us !</h1>
<p>
First name : <input type="text" id="users-nameF"> <br/>
Last name : <input type="text" id="users-nameL"> <br />
Email : <input type="email" id="users-email"> <br />
Phone : <input type="number" id="users-name"> <br />
Your Message : <input type="text" id="users-contact"> <br />
<center><button id="send" type="button"> finish </button></center>
<p id= "sent_message"> </p>
</p>
</div>
</div>
<div class = "logo">
<img src="images/logo.jpg" width = "75" height = "75">
</div>
<script src="index.js"></script>
</body>
</head>