Upload index (2).html

#1
Files changed (1) hide show
  1. index (2).html +63 -0
index (2).html ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Contact Us - i- buy website</title>
5
+ <link rel="stylesheet" href='../styles/style.css'>
6
+ <style>
7
+ body {
8
+ background-color: #001f3f; /* Dark blue background */
9
+ color: #ffffff; /* White text color */
10
+ display: flex;
11
+ flex-direction: column;
12
+ align-items: center;
13
+ justify-content: center;
14
+ }
15
+ .contact-section {
16
+ text-align: center;
17
+ }
18
+ .contact-image {
19
+ margin: 20px 0;
20
+ }
21
+ .contact-image img {
22
+ max-width: 300px;
23
+ height: auto;
24
+ border-radius: 10px;
25
+ }
26
+ form {
27
+ display: inline-block;
28
+ text-align: left;
29
+ }
30
+ </style>
31
+ </head>
32
+ <body>
33
+
34
+ <div class="contact-section">
35
+ <h1>Contact Us</h1>
36
+
37
+ <p>If you have any questions about your order or our products, feel free to contact us using the form below.</p>
38
+
39
+ <div class="contact-image">
40
+ <img src="WhatsApp Image 2024-08-12 at 21.42.17_90dbf6f3.jpg" alt="Contact Us Image">
41
+ </div>
42
+
43
+ <form action="#" method="post">
44
+ <label for="name">name:</label><br>
45
+ <input type="text" id="name" name="name" ><br><br>
46
+
47
+ <label for="email">Email:</label><br>
48
+ <input type="email" id="email" name="email" ><br><br>
49
+
50
+ <label for="message">Message:</label><br>
51
+ <textarea id="message" name="message" rows="5" cols="30" ></textarea><br><br>
52
+
53
+ <input type="submit" value="Send">
54
+ </form>
55
+
56
+ <p>Email:[email protected]</p>
57
+ <p>Phone:0111 214 1113</p>
58
+ <p>Shiekh Zayed, Waslet Dahshour, Point 6 Mall, Next to princess Cafe</p>
59
+ <p>Location: <a href="https://maps.app.goo.gl/Wpvz9gBHn5zw9CZx8" target="_blank" style="color: #ffffff; text-decoration: underline;">View on Google Maps</a></p>
60
+ </div>
61
+
62
+ </body>
63
+ </html>