-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
203 lines (160 loc) · 3.71 KB
/
index.html
File metadata and controls
203 lines (160 loc) · 3.71 KB
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<!DOCTYPE html>
<html>
<head>
<title>Munad Paints | Home</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width" initial-scale="1"/>
<meta charset="utf-8" content="Munad Paints" description="Gloss Paint, Emulsion Paint"/>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<!--Head Ends-->
<!--Body Begins-->
<body id="inner-container">
<header>
<div id="nav-bar" >
<div id="logo">
<a href="#" id="nav-image" ><img width="50px" src="image/logo.jpg" alt="logo" ></a>
</div>
<div id="menu" >
<div id="mobile-menu" >
<button class="dropdown" >Menu</button>
</div>
<nav>
<ul>
<li><a href="index.html" >Home</a></li>
<li><a href="#" >Contact</a></li>
<li><a href="gallery.html" >Gallery</a></li>
</ul>
</nav>
</div>
</div>
</header>
<!--End Of Navigation-->
<!--Beginning Of Main Content-->
<main>
<div id="main-container" >
<div id="showcase" >
<article>
<h1>Munad Paints</h1>
<p>Giving Quality Paints and Services</p>
</article>
</div>
<div id="service" >
<h2>Our Paints Are as Follows</h2>
<p id="span" > </p>
</div>
<div class="paints" >
<section>
<figure>
<img src="image/p1.jpg" alt="pics" >
<figcaption><p>This Is is Emulsion Paint</p></figcaption>
</figure>
</section>
</div>
<div class="paints" >
<section>
<figure>
<img src="image/p2.jpg" alt="pics" >
<figcaption><p>This Is is Emulsion Paint</p></figcaption>
</figure>
</section>
</div>
<div class="paints" >
<section>
<figure>
<img src="image/p3.jpg" alt="pics" >
<figcaption><p>This Is is Emulsion Paint</p></figcaption>
</figure>
</section>
</div>
<div class="paints" >
<section>
<figure>
<img src="image/p4.jpg" alt="pics" >
<figcaption><p>This Is is Emulsion Paint</p></figcaption>
</figure>
</section>
</div>
<!-- Font Awesome Section Starts -->
<div id="fun" >
<div id="testimonial" class="fontAwesome" >
<i class="fa fa-quote-left"> </i> <i class="fa fa-quote-right"> </i>
<article>
<h1>Testimonials</h1>
<p>Here are Some Testimonies</p>
</article>
</div>
<div id="strength" class="fontAwesome" >
<i class="fa fa-thumbs-up"> </i>
<article>
<h1>Strength</h1>
<p>
We have capable man power to provide you a good and quality good and service
</p>
</article>
</div>
<div id="achievement" class="fontAwesome" >
<i class="fa fa-thumbs-up"> </i>
<article>
<h1>Achievements</h1>
<p>
We have achieved a lot in our company
</p>
</article>
</div>
</div>
</div>
</main>
<!--End Of Main Content-->
<!--Beginning of Footer-->
<footer>
<div id="footer-container" >
<div id="ab" class="one-third" >
<article>
<h1>
About Us
</h1>
<aside>
<p>
Munad paints is an reliable paints company.
</p>
<p>
It is based in Southwestern part of Nigeria
</p>
</aside>
</article>
</div>
<div id="ab" class="one-third" >
<article>
<h1>
Our Paints
</h1>
<aside>
<ul>
<li>Emulsion</li>
<li>Glossy</li>
<li>Satine</li>
<li>Turpentine</li>
</ul>
</aside>
</article>
</div>
<div id="ab" class="one-third" >
<article>
<h1>
Contact Us
</h1>
<aside>
<p>
Are you feeling like contacting us?
</p>
<p>
Feel free to do so....
</p>
</aside>
</article>
</div>
</div>
</footer>
</body>
</html>