-
Notifications
You must be signed in to change notification settings - Fork 9
/
contact.html
141 lines (129 loc) · 5.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./commonStyle.css">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/aa7454d09f.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Header -->
<header>
<div id="logo">
<a href="./index.html">
<img src="./img/logo-white.png" alt="">
</a>
</div>
<ul class="nav" id="nav">
<ul class="navLogo">
<a href="./index.html">
<img src="./img/logo-white.png" alt="">
</a>
</ul>
<li class="nav-link"><a href="./index.html">Home</a></li>
<li class="nav-link"><a href="./aboutus.html">About Us</a></li>
<li class="nav-link"><a href="./contact.html">Contact</a></li>
<li class="sociallinkContainer">
<img class="sociallink" src="./img/fabook-icon-white.svg" alt="">
<img class="sociallink" src="./img/twitter-icon-white.svg" alt="">
<img class="sociallink" src="./img/inkedin-icon-white.svg" alt="">
<img class="sociallink" src="./img/whatsapp-icon-white.svg" alt="">
</li>
</ul>
<div id="barContainer">
<i id="bar" class="fa-solid fa-bars"></i>
</div>
</header>
<!-- Contact form -->
<section class="gridSection contactSection">
<div class="contactformContainer">
<h1 class="sectionHeader">Get in touch</h1>
<form action="#" class="contactForm">
<div>
<input type="text" name="" id="" placeholder="full name" class="contactInput">
<input type="text" name="" id="" placeholder="Email" class="contactInput">
</div>
<textarea name="" id="" cols="30" rows="5" placeholder="Message" class="contactInput"></textarea>
<button type="submit" class="btn primaryBtn contactBtn">Submit</button>
</form>
</div>
<div class="sectionPic bouncepic contactPic" id="sectionPic">
<img src="./img/contact-img.png" alt="">
</div>
</section>
<h1 class="addressHeader">Find us Quickly</h1>
<div class="address">
<div class="eachAddress">
<h1>Tokyo</h1>
<p>Phone: (814) 842-3838</p>
<p>Address: 264 Pine Pitch RdBuffalo Mills, Pennsylvania(PA), 15534</p>
<p>Email: demo@website.com</p>
</div>
<div class="eachAddress">
<h1>USA</h1>
<p>Phone: (814) 842-3838</p>
<p>Address: 264 Pine Pitch RdBuffalo Mills, Pennsylvania(PA), 15534</p>
<p>Email: demo@website.com</p>
</div>
<div class="eachAddress">
<h1>Canada</h1>
<p>Phone: (814) 842-3838</p>
<p>Address: 264 Pine Pitch RdBuffalo Mills, Pennsylvania(PA), 15534</p>
<p>Email: demo@website.com</p>
</div>
</div>
<!-- footer -->
<footer>
<div class="joinSection">
<div class="joinDesc">
<h1 class="sectionHeader">Join with us</h1>
<p class="sectionPara">
Once you have created your account, you can purchase coins from website
</p>
</div>
<button class="btn primaryBtn">JOIN NOW</button>
</div>
<div class="footerlinksContainer">
<div class="footerAboutus">
<img src="./img/logo-white.png" alt="">
<p class="darkPara">With no commissions and a simple user interface,
Prouple is the most reliable way to trade for
Cryptocurrency.
</p>
<div class="footersociallinkContainer">
<img class="sociallink" src="./img/fabook-icon-white.svg" alt="">
<img class="sociallink" src="./img/twitter-icon-white.svg" alt="">
<img class="sociallink" src="./img/inkedin-icon-white.svg" alt="">
<img class="sociallink" src="./img/whatsapp-icon-white.svg" alt="">
</div>
</div>
<div class="footerlink">
<h1 class="linkTitle">Explore</h1>
<a href="#" class="eachLink">About us</a>
<a href="#" class="eachLink">FAQ</a>
<a href="#" class="eachLink">Blog</a>
<a href="#" class="eachLink">Contact</a>
</div>
<div class="footerlink">
<h1 class="linkTitle">Service</h1>
<a href="#" class="eachLink">Mining</a>
<a href="#" class="eachLink">Control Data</a>
<a href="#" class="eachLink">Design</a>
<a href="#" class="eachLink">Security</a>
</div>
<div class="footerlink">
<h1 class="linkTitle">Resource</h1>
<a href="#" class="eachLink">Style Guide</a>
<a href="#" class="eachLink">Change Log</a>
<a href="#" class="eachLink">License</a>
</div>
</div>
<div class="footerCopyright">
<p>© 2023 design and developed by <a href="#" class="developedBy">Programming Insider</a>.</p>
</div>
</footer>
<script src="./script.js"></script>
</body>
</html>