-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
172 lines (128 loc) · 4.54 KB
/
index.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="author" content="Oluwole Opeyemi Emmanuel">
<title>PSI E-COMMERCE WEBSITE</title>
<link rel="stylesheet" href="styles/style.css" />
<link
href="https://fonts.googleapia.com/css2?
family=poppins:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<!--secret- background: radial-gradient(#fff, #ffd6d6); -->
<body>
<!--this is the header-->
<div class="header">
<div class="container">
<div class="navbar">
<div class="logo">
<img src="images/logo.png" width="120px" />
</div>
<!-- this nav is where the home, products, about,contact, account is wrapped. -->
<nav>
<ul>
<li><a href="">HOME</a></li>
<li><a href="">PRODUCTS</a></li>
<li><a href="">ABOUT</a></li>
<li><a href="">CONTACTS</a></li>
<li><a href="">ACCOUNT</a></li>
</ul>
</nav>
<img src="images/bigcart (2).jpg" width="50px" height="50px" />
<!--end of the nav tag-->
</div>
<div class="row">
<div class="col-2 nav-text">
<div class="nav-text">
<h1>Give your Business A New Face!</h1>
<p>
<blockquote>
Achieving Success In Your Business Isn't A Day Job,<br />Consistency
and Seriousness Brings You to Limelight.<br />
Be Diligent, and be ever ready to Give in your best
<br />Success on its Way.....
</blockquote>
</p>
<a href="" class="btn">SURVEY →</a>
</div>
</div>
<div class="col-2">
<img src="images/classy1.jpg" />
</div>
</div>
</div>
</div>
<!--end of the header tag-->
<!--some featured category-->
<div class="categories">
<div class=".little-container">
<div class="row">
<div class="col-3">
<img src="images/meeting1 (1).jpeg" />
</div>
<div class="col-3">
<img src="images/meeting1 (3).jpeg" />
</div>
<div class="col-3">
<img src="images/meeting1 (4).jpeg" />
</div>
</div>
</div>
</div>
<!--after page .col-3 img {
width: 620px; we have thw following css syntax but i did not use it i deleted it. (.little-container {
max-width: 1080px;
margin: auto;
padding-left: 25px;
padding-right: 25px;
}) -->
<!--end of categories-->
<!--products-->
<div class="little-container">
<h2 class="title">WHAT DO WE DO?</h2>
<div class="row">
<div class="col-4">
<img src="images/brand1.jpg" alt="" />
<h3>Brand</h3>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-half-o"></i>
</div>
<p>$50.00</p>
</div>
<div class="col-4">
<img src="images/workspace.jpg" height="100%" />
<h3>Design</h3>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-o"></i>
</div>
<p>$50.00</p>
<!--https://www.youtube.com/watch?v=1Rs2ND1ryYc&t=10s zero to hero css course0-->
</div>
<div class="col-4">
<img src="images/boxing.jpg" alt="" />
<h3>Package </h3>
<div class="rating">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star-half-o"></i>
</div>
<p>$50.00</p>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>