forked from zero-to-mastery/Keiko-Corp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
95 lines (95 loc) · 3.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./contact.css" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
<title>Contact Us</title>
</head>
<body>
<div id="container">
<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>
<main>
<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>
<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" />
<input type="text" name="last-name" placeholder="Last name" />
</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" />
</div>
<div class="form-input multiple">
<input type="tel" name="phone" placeholder="Phone" />
<input type="text" name="country" placeholder="Country" />
</div>
<div class="form-input">
<select name="department">
<option value="default" selected>Select Department</option>
<option value="details">Detail</option>
<option value="business">Business</option>
<option value="support">Support</option>
</select>
</div>
<div class="form-input">
<textarea
name="message"
cols="30"
rows="10"
placeholder="How can we help?"
></textarea>
</div>
<div>
<button id="button">Submit</button>
</div>
</form>
</div>
</main>
</div>
</body>
</html>