-
Notifications
You must be signed in to change notification settings - Fork 1
/
contactUs.html
88 lines (86 loc) · 3.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact us</title>
<link rel="stylesheet" href="./css/contactUs.css">
<link rel="stylesheet" href="https://unpkg.com/flickity@2/dist/flickity.min.css">
</head>
<body>
<nav>
<div>
<span id="logo"><img src="https://about.codecov.io/wp-content/themes/codecov/assets/brand/logos/codecov.svg"
alt="">
</span>
</div>
</nav>
<main>
<div id="main1">
<div id="container">
<div id="upper"></div>
<div class="carousel" data-flickity='{"wrapAround":true, "autoPlay": true }'>
<div class="carousel-cell">
<img src="./images/hitachi.png" alt="">
</div>
<div class="carousel-cell">
<img src="./images/grab.png" alt="">
</div>
<div class="carousel-cell">
<img src="./images/theWashingtonPost.png" alt="">
</div>
<div class="carousel-cell">
<img src="./images/weWork.png" alt="">
</div>
</div>
</div>
</div>
<div id="main2">
<form>
<div>
<div id="fullName" class="info">
<div>
<label for="">First Name: <span>*</span></label>
<input type="text" id="firstName">
</div>
<div>
<label for="">Last Name <span>*</span></label>
<input type="text" id="lastName">
</div>
</div>
<div id="contact" class="info">
<div>
<label for="">Email Address <span>*</span></label>
<input type="email" id="email">
</div>
<div>
<label for="">Phone Number: <span>*</span></label>
<input type="number" id="phoneNumber">
</div>
</div>
<div id="enquiry" class="info">
<label for="">Contact Reason: <span>*</span></label>
<select id="contactReason">
<option style="display: none;"></option>
<option value="General Enquiry">General Enquiry</option>
<option value="Become a Partner">Become a Partner</option>
<option value="Help and Support">Help and Support</option>
</select>
</div>
<div id="message" class="info">
<label for="">Message: <span>*</span></label>
<textarea id="msg" cols="30" rows="10"></textarea>
</div>
<div class="info" id="btn-p">
<input type="button" value="Submit" id="btn" class="button">
</div>
</div>
</form>
</div>
</main>
</body>
</html>
<script src="https://unpkg.com/flickity@2/dist/flickity.pkgd.min.js"></script>
<script src="./scripts/contactUs.js"></script>
<script src="https://unpkg.com/flickity@2/dist/flickity.pkgd.min.js"></script>