-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.php
89 lines (80 loc) · 4.06 KB
/
About.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About us</title>
<link rel="stylesheet" href="about.css">
<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=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet"
href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<script src="home.js" defer></script>
</head>
<body>
<header>
<a href="index.php" class="logo"><img src="image/logo/logo.png" alt=""></a>
<ul class="navmenu">
<li><a href="index.php">Home</a></li>
<div class="dropdown">
<li><a href="#">Shop</a></li>
<div class="dropdown-content">
<a href="products.php?div_id=image2">Electronics Devices</a>
<a href="products.php?div_id=image1">Clothes and Shoes</a>
<a href="products.php?div_id=image3">Home and Decor</a>
</div>
</div>
<li><a href="About.php">About</a></li>
</ul>
<div class="nav-icon">
<a href="#" ><i class='bx bx-search'></i></a>
<a href="#"><i class='bx bx-user' ></i></a>
<a href="cart.php"><i class='bx bx-cart' ></i></a>
<div class="bx bx-menu" id="menu-icon"></div>
</div>
</header>
<div class="hero_image">
</div>
<div class="product">
<div class="product__list__item">
<img class="img-responsive" src="image/about/picture1.jpg" alt="">
<h2 class="product_heading">
Our Services
</h2>
<p>we offers a convenient platform for buying and selling goods and services online.
It provides features such as product listings, search and navigation, online shopping carts, order management, inventory tracking, customer reviews. With a focus on user experience and security, our platforms streamline the online shopping experience for both buyers and sellers.</p>
</div>
<div class="product__list__item">
<img class="img-responsive" src="image/about/picture2.jpg" alt="">
<h2 class="product_heading">
Our Values
</h2>
<p>We believe in giving the best to our customers,sellers and society.Not only this ,we think as a team.work as a team and work hard to give a better experience of shopping to our users.</p>
</div>
<div class="product__list__item">
<img class="img-responsive" src="image/about/picture3.jpg" alt="">
<h2 class="product_heading">
Our Promises
</h2>
<p>we provide a million of products listed in different categories and the listed products are personally checked for better quality.At any type mistake ,we offer return of goods policy.</p>
</div>
</div>
<footer class="footer">
<div class="Ftext">
<h1>Contact</h1>
<p>Cosmos College</p>
<p>Tutepani, Lalitpur</p>
<a href="mailto:info@cosmoscollege.edu.np">info@cosmoscollege.edu.np</a>
</div>
<div class="Ftext">
<h3>Links</h3>
<p><a href="index.php">Home</a></p>
<p><a href="login.php">Login</a></p>
<p><a href="signup.php">Register</a></p>
<p><a href="About.php">About</a></p>
</div>
</footer>
</body>
</html>