forked from zero-to-mastery/Keiko-Corp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
166 lines (157 loc) · 5.33 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="en">
<!-- ************** HEAD ******************** -->
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./assets/global.css" />
<link rel="stylesheet" href="./assets/css/styles.css" />
<link rel="stylesheet" href="./assets/css/contact.css" />
<link rel="stylesheet" href="./assets/css/scroll-bar.css" />
<link rel="stylesheet" href="./assets/css/nav-styles.css" />
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet" />
<link rel="icon" href="./assets/images/keiko-icon.ico" />
<title>Contact Us</title>
</head>
<!-- ************** BODY ************** -->
<body class="main">
<!-- HEADER -->
<header class="no-user-select">
<!-- sticky header -->
<div class="container-nav sticky">
<nav class="navbar">
<div class="nav-button">
<span></span>
<span></span>
<span></span>
</div>
<ul class="menu">
<li>
<img src="./assets/images/keiko-logo.png" class="logo" alt="Keiko Corp" />
</li>
<li>
<a href="./index.html">
<button id="contact-btn">Home</button>
</a>
</li>
<li>
<a href="./index.html#features">
<button id="contact-btn">Features</button>
</a>
</li>
<li>
<a href="./index.html#testimonials">
<button id="contact-btn">Testimonials</button>
</a>
</li>
<li>
<a href="./meet-the-team.html">
<button id="contact-btn">Team</button>
</a>
</li>
<li>
<a href="./index.html#pricing">
<button id="contact-btn">Pricing</button>
</a>
</li>
<li>
<a href="./contact.html">
<button id="contact-btn">Contact</button>
</a>
</li>
<!-----------------Toggle Button for Dark Mode---------------- -->
<label class="toggle-bar" id="toggle-bar">
<input type="checkbox" id="toggle-checkbox" />
<span class="slider round" id="slider-round"></span>
</label>
<!-- --------------------------------------- -->
</ul>
</ul>
</nav>
</div>
</header>
<div id="container">
<!--Header Starts here -->
<header>
<h1>Contact Us</h1>
<p>
Far far away, behind the word mountains, far from the countries
Vokalia and consonantia, there live the blind texts.
</p>
</header>
<!-- Header End's -->
<main>
<!-- Call To Action Cards -->
<div class="cards">
<div>
<h2>Call or email</h2>
<p>
Support, Sales and Account Management services are currently
available in English.
</p>
</div>
<div>
<h3>Support</h3>
<span>+800 3005 4300</span>
<a href="#">Contact Support</a>
<p>
Our technical support is available by phone or email from 11am to
11pm BST, Monday to Friday.
</p>
</div>
<div>
<h3>Sales</h3>
<span>+800 3005 4300</span>
<a href="#">Contact Sales</a>
<p>
Our technical support is available by phone or email from 11am to
11pm BST, Monday to Friday.
</p>
</div>
<div>
<h3>General inquiries</h3>
<a href="#">[email protected]</a>
</div>
</div>
<!-- Form Starts Here-->
<div class="form">
<h2>Drop us a line</h2>
<form action="#">
<div class="form-input multiple">
<input type="text" name="first-name" placeholder="First name" required/>
<input type="text" name="last-name" placeholder="Last name" required/>
</div>
<div class="form-input">
<input type="text" name="company" placeholder="Company Name" />
</div>
<div class="form-input">
<input type="email" name="email" placeholder="Email" required/>
</div>
<div class="form-input multiple">
<input type="tel" name="phone" placeholder="Phone" />
<input type="text" name="country" placeholder="Country" required/>
</div>
<div class="form-input">
<select name="department" required>
<option value=""disabled selected>Select Department</option>
<option value="details">Detail</option>
<option value="business">Business</option>
<option value="support">Support</option>
</select>
</div>
<!-- Form Input Box here-->
<div class="form-input">
<textarea name="message" cols="30" rows="10" placeholder="How can we help?" required></textarea>
</div>
<div>
<!-- Submit Button -->
<button type="submit" id="button">Submit</button>
</div>
</form>
</div>
</main>
</div>
<script src="./assets/js/dark-mode.js"></script>
<script src="./assets/js/navbar.js"></script>
</body>
</html>