-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
79 lines (58 loc) · 2.27 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
<!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="style.css">
<link rel="stylesheet" href="images/fontawesome-5 2/css/all.css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Quicksand">
<link rel="stylesheet" href="contactform.php">
<title>Contact page</title>
</head>
<body>
<section class="contact-section">
<div class="container-contact">
<div class="contact-contents">
<div>
<div class="contact-content">
<h1 class="contact-page">Contact Us</h1>
<div class="contact-info">
<ul>
<li><i class="fas fa-map-marker-alt"></i>20 Blossom Avenue Irete Nigeria</li>
<li><i class="far fa-envelope"></i> [email protected]</li>
<li><a href="https://facebook.com/ChampGraphix NG"><i class="fab fa-facebook-f"></i></a> ChampGraphix NG</li>
<li><i class="fas fa-mobile-alt"></i> +2348066212287</li>
</ul>
<div class="icons">
<a href="https://facebook.com/ChampGraphix">
<div><i class="fab fa-facebook"></i></div>
</a>
<a href="https://instagram.com/champgraphix">
<div><i class="fab fa-instagram"></i></div>
</a>
<a href="https://twitter.com/kvng_miracleo">
<div><i class="fab fa-twitter"></i></div>
</a>
</div>
</div>
</div>
</div>
<div>
<div class="contact-form">
<button class="back-to-page"><i class="fas fa-angle-double-left"></i> <a href="index.html">Home</a></button>
<form class="form" action="contactform.php" method="post">
<h1>Get in Touch</h1>
<div class="form-note">Feel free to drop us a line below!</div>
<input class="input" type="text" name="name" placeholder="Your name"> <br>
<input class="input" type="email" name="email" placeholder="Your email"> <br>
<textarea class="message" name="message" placeholder="Type your Message here"></textarea> <br>
<input class="submit" type="submit" name="submit" value="send">
</form>
</div>
</div>
</div>
</div>
</section>
</body>
</html>