-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
138 lines (137 loc) · 5.86 KB
/
blog.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>E-commerce website</title>
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
</head>
<body>
<script src="script.js"></script>
<section id="page-header">
<a href="#"><img src="images/logo.png" class="logo" alt=""></a>
<div>
<ul id="navbar">
<li> <a href="index.html">Home</a></li>
<li> <a href="contact.html">Contact</a></li>
<li> <a class="active" href="blog.html">Blog</a></li>
<li> <a href="shop.html">Shop</a></li>
<li> <a href="about.html">About</a></li>
<li id="ig-bag"> <a href="cart.html"><i class="fa fa-shopping-basket"></i></a></li>
<a href="#" id="close"><i class="far fa-times"></a></i>
</ul>
</div>
<div id="mobile">
<a href="cart.html"><i class="fa fa-shopping-basket"></i></a>
<i id="bar" class="fas fa-outdent"></i>
</div>
</section>
<section id="hero" class="blog-header">
<h2>#Readmore</h2>
<p>Read all case studies about our products!</p>
<button>Shop Now</button>
</section>
<section id="blog">
<div class="blog-box">
<div class="blog-img">
<img src="images/Computers.png" alt="">
</div>
<div class="blog-details">
<h4>The best hp products</h4>
<p>Why HP products are best?
One brand that we can count on to be a consistent performer is HP, who makes some of the best laptops on the market, hands down. Whether we're comparing the best machines for gaming, affordability, students—you name it—HP does it and does it well</p>
<a href="#">continue Reading</a>
</div>
<h1>05/02</h1>
</div>
<div class="blog-box">
<div class="blog-img">
<img src="images/pro.jpg" alt="">
</div>
<div class="blog-details">
<h4>The best hp products</h4>
<p>What is special about HP Pavilion?
The HP Pavilion line of laptops is known for its speed and portability, as well as its reasonable prices. Best of all, the HP Pavilion suits the needs of a wide range of users, including students, those who travel and work on-the-go, gamers, and creatives.</p>
<a href="#">continue Reading</a>
</div>
<h1>05/02</h1>
</div>
<div class="blog-box">
<div class="blog-img">
<img src="images/xiaomi.jpg" alt="">
</div>
<div class="blog-details">
<h4>The best hp products</h4>
<p> Xiaomi always produces affordable products. This thing still fascinates the customer towards the brand. Xiaomi provides its users with an unforgettable experience which also helps them to retain their customer base.</p>
<a href="#">continue Reading</a>
</div>
<h1>05/02</h1>
</div>
<div class="blog-box">
<div class="blog-img">
<img src="images/win.jpg" alt="">
</div>
<div class="blog-details">
<h4>The best hp products</h4>
<p>The HP Essential line of laptop computers consist of entry-level, inexpensive Microsoft Windows based laptops offered by HP Inc. These products include the HP Laptop and HP Notebook and also products solely branded as HP. There is also a similar line called HP Stream of low-end consumer-oriented laptops and tablets.</p>
<a href="#">continue Reading</a>
</div>
<h1>05/02</h1>
</div>
<div class="blog-box">
<div class="blog-img">
<img src="images/latitude.jpg" alt="">
</div>
<div class="blog-details">
<h4>The best Dell products</h4>
<p>Latitude is built to handle today's multi-tasking demands, powered by Intel® Core™ processors, fast memory options and advanced thermals, designed with renewable and recyclable materials.</p>
<a href="#">continue Reading</a>
</div>
<h1>05/02</h1>
</div>
</section>
<section id="pagination" class="section-p1">
<a href="#">1</a>
<a href="#">2</a>
<a href="#"><i class="fal fa-long-arrow-alt-right"></i></a>
</section>
<section id="more" class="section-m2">
<div class="about-box">
<h2>About us</h2>
<p>Computervillage.Ng online marketplace is the number one online technology device marketplace in sub-saharan Africa. A central hub to shop for IT products and electronic gadgets from thousands of vendors.</p>
<button>Read more</button>
</div>
<div class="col-1">
<h4>About</h4>
<a href="#">About us</a>
<a href="#">Delivery Information</a>
<a href="#">Privacy Policy</a>
<a href="#">Terms & conditions</a>
<a href="#">Contact us</a>
</div>
<div class="col-2">
<h4>My Account</h4>
<a href="#">Sign in</a>
<a href="#">View cart</a>
<a href="#">My wishlists</a>
<a href="#">Track my order</a>
<a href="#">Help</a>
</div>
<div class="con-detail">
<h4>Contact details</h4>
<p>29/31, Obafemi Awolowo way, Awolowo Glasshouse, Ikeja, Lagos
(+234) -081-4000-0567
</div>
</div>
</section>
<section id="overall" class="section-3">
<footer>
<div class="lasty">
<h4>© 2024 Computer Village Technology Marketplace. All Rights Reserved. Designed and Managed by <span>Mr_simze</span> Consultants Limited</h4>
</div>
</footer>
</section>
</html>
</body>