-
Notifications
You must be signed in to change notification settings - Fork 6
/
contact.html
117 lines (112 loc) · 4.64 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
<!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="css/style.css" />
<link rel="stylesheet" href="css/contact.css" />
<script src="https://kit.fontawesome.com/fff0416440.js" crossorigin="anonymous"></script>
<title>Document</title>
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="index.html">
<span class="proj">Project<br /><span class="gen">cc_gen</span></span>
</a>
</div>
<span id="open-menu" >☰</span>
<span id="close-menu" class="hidden">✖</span>
<ul class="menu-list">
<li><a href="index.html">Home</a></li>
<li><a href="library.html">Library</a></li>
<li><a href="document.html">Docs</a></li>
<li><a href="about.html">About</a></li>
<li><a href="login.html">Login</a></li>
<li id="bg-li"><a href="signup.html">Get started for FREE</a></li>
</ul>
</nav>
<div class="mobile-menu">
<ul class="mob-menu-list">
<li><a href="index.html">Home</a></li>
<li><a href="library.html">Library</a></li>
<li><a href="document.html">Docs</a></li>
<li><a href="about.html">About</a></li>
<li><a href="login.html">Login</a></li>
<li id="bg-li"><a href="signup.html">Get started</a></li>
</ul>
</div>
</header>
<main class="mainbox">
<div class="div1">
<p>contact us</p>
<h1>Get in Touch</h1>
<p class="pp">you need more information about our services. <br> contact us today.Our experts are readly
<br> available to guide
you on this journey.
</p>
<h5 class="support">Support</h5>
<p> <i class="fa-solid fa-phone"></i> +234 603 428 1393</p>
<p> <i class="fa-solid fa-envelope-open"></i> support@cc_gen.com</p>
</div>
<div class="div2">
<div>
<h5>Full Name*</h5>
<input type="text" placeholder="Jane Doe" maxlength="12">
<h5>Company</h5>
<input type="text" placeholder="******" maxlength="12">
<h5>Email Address*</h5>
<input type="email" placeholder="Jane Doe" required pattern="[a-z][0-9][*&%_]@gmail.com">
<h5>Phone Number*</h5>
<input type="number" placeholder="******" maxlength="12">
<h5>Additional Information</h5>
<textarea name="" id="" placeholder="Anymore info you can provide" cols="30" class="texttings"
rows="10"></textarea>
</div>
<button type="submit" class="btnsub">Submit</button>
</div>
</main>
<footer>
<div class="top-footer">
<article id="sect-five">
<div class="sf-about">
<h2>Project cc_gen</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Tincidunt
duis facilisis co nvallis magna elementum nibh. Eu mi mi eu neque
tortor fermentum. Aliquam ac nibh cons
</p>
</div>
<div>
<a href=""><img src="img/tweet.svg" alt="socials" class="icon" /></a>
<a href=""><img src="img/fb.svg" alt="socials" class="icon" /></a>
<a href=""><img src="img/insta.svg" alt="socials" class="icon" /></a>
</div>
</article>
<article id="sect-six">
<div>
<h3>Links</h3>
<ul class="foot-list">
<li><a href="">Designs</a></li>
<li><a href="documentation.html">Docs</a></li>
<li><a href="contact.html">Support</a></li>
<li><a href="signup.html">Get Started</a></li>
</ul>
</div>
<div>
<h3>Others</h3>
<ul class="foot-list">
<li><a href="Aboutus.html">About Us</a></li>
<li><a href="">Terms & Conditions</a></li>
</ul>
</div>
</article>
</div>
<div>
<span class="footer-CR">©2022 Project cc_gen. All rights reserved</span>
</div>
</footer>
</body>
</html>