This repository has been archived by the owner on Aug 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontactus.html
82 lines (82 loc) · 2.42 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
<!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" />
<link rel="stylesheet" href="styles/global.css" />
<link rel="stylesheet" href="styles/Suleiman.css" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<title>Contact Us</title>
</head>
<body>
<header-template></header-template>
<main>
<section class="contact">
<div class="content">
<h2>Contact Us</h2>
</div>
<div class="containerc">
<div class="contactinfo">
<div class="box">
<div class="icon">
<i class="fa fa-map-marker" aria-hidden="true"></i>
</div>
<div class="text">
<h3>Address</h3>
<p>
Jalan Teknologi 5, Technology <br />
Park Malaysia, Bukit Jalil, <br />
Kuala Lumpur 57000, Malaysia
</p>
</div>
</div>
<div class="box">
<div class="icon">
<i class="fa fa-phone" aria-hidden="true"></i>
</div>
<div class="text">
<h3>Phone Number</h3>
<p>1 300 888 278</p>
</div>
</div>
<div class="box">
<div class="icon">
<i class="fa fa-envelope-o" aria-hidden="true"></i>
</div>
<div class="text">
<h3>Email</h3>
<p>taekwondoclub@apu.my</p>
</div>
</div>
</div>
<div class="contactform">
<form>
<h2>Send Message</h2>
<div class="input">
<span>Full Name</span>
<input type="text" name="fullName" required />
</div>
<div class="input">
<span>Email</span>
<input type="text" name="email" required />
</div>
<div class="input">
<span>Type Your Message.....</span>
<textarea required></textarea>
</div>
<div class="input">
<input type="submit" value="Send" />
</div>
</form>
</div>
</div>
</section>
</main>
<footer-template></footer-template>
<script src="scripts/global.js"></script>
</body>
</html>