-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
143 lines (123 loc) · 4.95 KB
/
about.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
<!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">
<title>Colo Span</title>
<!-- Font awesome -->
<script src="https://kit.fontawesome.com/ce07841c3e.js" crossorigin="anonymous"></script>
<!-- Google Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=League+Spartan&display=swap" rel="stylesheet">
<!-- Box-icons -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<!-- Google font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="./css/header.css">
</head>
<body>
<section id="header">
<a class="navbar-brand" href=""><h2>COLO<span id="header-red">SHOP</span></h2></a>
<div>
<ul id="navbar">
<li><a class="active" href="./header.html">Home</a></li>
<li><a href="./shop.html">Shop</a></li>
<li><a href="./blog.html">Blog</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./contact.html">Contact</a></li>
<li><a href=""><i class="fa-solid fa-magnifying-glass"></i></a></li>
<a href="#" id="close"><i class="fa-solid fa-xmark"></i></a>
</ul>
</div>
<div class = "cart">
<button type = "button" id = "cart-btn">
<i class = "fas fa-shopping-cart"></i>
<span id = "cart-count-info"></span>
</button>
<div class = "cart-container">
<div class = "cart-list">
</div>
<div class = "cart-total">
<h3>Total: $</h3>
<span id = "cart-total-value"></span>
</div>
</div>
</div>
<div id="mobile">
<i id="bar" class="fa-solid fa-bars"></i>
</div>
</section>
<section id="page-header" class="about-header">
<h2>#Know about us</h2>
<p>Save more with coupons and upto 50% off</p>
</section>
<section id="about-head" class="section-p1">
<img src="./assets/about/img2.jpg" alt="">
<div>
<h2>Who we Are???</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nisi repellat voluptas, fugiat odio quidem expedita adipisci deleniti dignissimos sequi illo molestiae autem. In alias, doloremque omnis nemo veritatis praesentium perferendis distinctio et eveniet culpa veniam ut sapiente expedita minima perspiciatis, dolores saepe cupiditate facilis corporis! Amet incidunt perferendis atque illum!</p>
<abbr title="">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Voluptatem, non unde. Expedita harum dicta voluptas fuga repellat? Voluptatibus, similique nesciunt?</abbr>
<br>
<div class="about-logo">
<img src="./assets/about/img3.jpg" alt="">
</div>
<br>
<marquee bgcolor="#eb167d" loop="-1" scrollamount="5" width="100%">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Aliquid cum assumenda nisi harum, dolor in quasi sequi culpa eius maxime.</marquee>
</div>
</section>
<footer class="section-p1">
<div class="col">
<h2>COLO<span id="header-red">SHOP</span></h2>
<div class="follow"></div>
<h4>follow us</h4>
<div class="icon">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-youtube"></i>
</div>
<div class="copyright">
<p>Copyrights 2022</p>
</div>
</div>
</div>
<div class="col">
<h4>Product</h4>
<a href="#">Download</a>
<a href="#">Pricing</a>
<a href="#">Locations</a>
<a href="#">Server</a>
<a href="#">Countries</a>
<a href="#">Blog</a>
</div>
<div class="col">
<h4>Category</h4>
<a href="#">Men</a>
<a href="#">Women</a>
<a href="#">Kids</a>
<a href="#">Best Seller</a>
<a href="#">New Arrivals</a>
</div>
<div class="col">
<h4>My Account</h4>
<a href="#">My Account</a>
<a href="#">Discount</a>
<a href="#">Returns</a>
<a href="#">Order History</a>
<a href="#">Order Tracking</a>
</div>
<div class="col install">
<h4>Contact Us</h4>
<p><strong>Address: </strong>123 Street Trafford, London, UK</p>
<p><strong>Mail: </strong>[email protected]</p>
<p><strong>Phone: </strong>+456 789 789 001</p>
</div>
</footer>
<script src="./javaScript/header.js"></script>
</body>
</html>