-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
112 lines (102 loc) · 4.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> SP Cart | E-commerce website</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;1,300&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="shortcut icon" href="images/logo3.jpeg" type="image/png">
</head>
<body>
<div class="container">
<div class="navbar">
<div class="logo">
<a href="index.html"> <img src="images/logo3.jpeg" alt="" width="125px"></a>
</div>
<nav>
<ul id="menuitems">
<li> <a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="signin.html">Account</a></li>
</ul>
</nav>
<a href="cart.html"> <img src="images/cart.png" alt="" height="30px" width="30px"> </a>
<img src="images/menu.png" class="menu-icon" alt="" onclick="menutoggle()">
</div>
</div>
<!-- --------account page------ -->
<div class="account-page" id="myrow">
<div class="container">
<div class="row">
<div class="col-2">
<img src="images/image1.png" alt="" width="100%">
</div>
<div class="col-2">
<div class="form-container">
<div class="form-btn">
<h4>Contact Us</h4>
<hr style=" width: 100px; background: #ff523b; height: 3px; border: none;">
</div>
<form action="" id="">
<input type="text" placeholder="Your Name">
<input type="email" placeholder="Email">
<input type="area" placeholder="subject">
<textarea name="" id="" cols="30" rows="3" placeholder="Explain..."></textarea>
<button type="submit" class="btn">Send</button>
</form>
</div>
</div>
</div>
</div>
</div>
<!--Footer-->
<div class="footer">
<div class="container">
<div class="row">
<div class="footer-col-1">
<h3>Download our App</h3>
<p>Download our App for Android and ios Mobile phones.</p>
<div class="app-logo">
<img src="images/play-store.png" alt="">
<img src="images/app-store.png" alt="">
</div>
</div>
<div class="footer-col-2">
<img src="images/logo3.jpeg" alt="">
<p>Our purpose to make benfits for user </p>
</div>
<div class="footer-col-3">
<h3>Useful Links</h3>
<ul>
<li>Coupns</li>
<li>Blog Post</li>
<li>Return Policy</li>
<li>Join Affiliate</li>
</ul>
</div>
<div class="footer-col-4">
<h3>Follow Us </h3>
<ul>
<li><a href="https://www.facebook.com/bullet.raja.1998/" target="_blank">Facebook</a> </li>
<li><a href="https://www.instagram.com/prajapati_rangbaz/?r=nametag"
target="_blank">Instagram</a> </li>
<li><a href="https://twitter.com/SachinP40" target="_blank"
rel="noopener noreferrer">Twitter</a> </li>
<li><a href="https://www.youtube.com/channel/UCVw4dR-OKfFsUxrwk8KWmeA" target="_blank"
rel="noopener noreferrer">YouTube</a> </li>
</ul>
</div>
</div>
<hr>
<p class="copyright">Copyright-2020-Sachin Prajapati</p>
</div>
</div>
</body>
<!--Java Script-->
<script src="script.js"></script>
</html>