-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
165 lines (136 loc) · 4.96 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Form</title>
<link rel="stylesheet" href="styles/contactstyle.css">
<script src="js files/app.js" defer></script>
</head>
<body>
<div class="header">
<img id="logoresponsive" src="imghome/logo.png" alt="logo">
<nav class="navbar">
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="navlinks">
<ul>
<li><a class="a" href="home.html">Home</a>
</li>
<li><a class="a" href="about.html">About </a></li>
<li><a class="a" href="media.html">Media</a></li>
<li><a class="a" href="faq.html">FAQ</a></li>
<li><a class="a" href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<div id="countdown-container">Days Till mardi gras
<div id="countdown">
<span id="days">0d</span> : <span id="hours">0h</span> :
<span id="minutes">0m</span> : <span id="seconds">0s</span>
</div>
</div>
</div>
<div>
<h1>
Contact
</h1>
</div>
<div class="container">
<div class="form">
<div class="contact-info">
<h3 class="title">Let's get in touch</h3>
<p class="text">
For press inquiries, please contact us in the mail below, For all other questions, please use the form below.
</p>
<div class="info">
<div class="information">
<img src="imgcontact/location.png" class="icon" alt="" />
<p>92 1380 Port of New Orleans Pl, New Orleans,</p>
</div>
<div class="information">
<img src="imgcontact/email.png" class="icon" alt="" />
<p>[email protected]</p>
</div>
<div class="information">
<img src="imgcontact/phone.png" class="icon" alt="" />
<p>123-456-789</p>
</div>
</div>
<div class="social-media">
<p>Connect with us :</p>
<div class="social-icons">
<a href="https://www.facebook.com/MardiGrasNewOrleans/"><img src="imgcontact/fac.png" alt="" width="35px"></a>
<a href="https://twitter.com/search?q=%23MardiGras%2C&lang=en"><img src="imgcontact/twit.png" alt="" width="35px"></a>
<a href="https://www.instagram.com/mardigrasneworleans/?hl=en"><img src="imgcontact/inst.png" alt="" width="35px"></a>
</div>
</div>
</div>
<div class="contact-form">
<form action="mailto:[email protected]" autocomplete="off">
<h3 class="title">Contact us</h3>
<div class="input-container">
<input type="text" name="name" class="input" />
<label for="">Username</label>
<span>Username</span>
</div>
<div class="input-container">
<input type="email" name="email" class="input" />
<label for="">Email</label>
<span>Email</span>
</div>
<div class="input-container">
<input type="tel" name="phone" class="input" />
<label for="">Phone</label>
<span>Phone</span>
</div>
<div class="input-container textarea">
<textarea name="message" class="input"></textarea>
<label for="">Message</label>
<span>Message</span>
</div>
<input type="submit" value="Send" class="btn" />
</form>
</div>
</div>
</div>
<footer class="footer-distributed">
<div class="footer-left">
<h3><img src="imghome/logo.png" width="180px" height="140px"></h3>
<p class="footer-links">
<a href="home.html" class="link-1">Home</a>
<a href="#">Back To Top</a>
</p>
<p class="footer-company-name">AREF-GABAN © 2021</p>
</div>
<div class="footer-center">
<div>
<i class="fa fa-map-marker"></i>
<p>Israel<br>Haifa province /Turan</p>
</div>
<div>
<i class="fa fa-phone"></i>
<p>+972548308253</p>
</div>
<div>
<i class="fa fa-envelope"></i>
<p><a href="[email protected]">[email protected]</a></p>
</div>
</div>
<div class="footer-right">
<p class="footer-company-about">
<span>About the company</span>
mardi gras is our project to make a new site for our company and i hope the site will meat the requrments of the project.
</p>
<div class="footer-icons">
<a href="https://www.facebook.com/MardiGrasNewOrleans/"><img src="imgcontact/fac.png" alt=""></a>
<a href="https://twitter.com/search?q=%23MardiGras%2C&lang=en"><img src="imgcontact/twit.png" alt=""></a>
<a href="https://www.instagram.com/mardigrasneworleans/?hl=en"><img src="imgcontact/inst.png" alt=""></a>
</div>
</div>
</footer>
</body>
</html>