-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct.php
More file actions
47 lines (41 loc) · 1.12 KB
/
Copy pathproduct.php
File metadata and controls
47 lines (41 loc) · 1.12 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
<?php include 'header.php';?>
<!-- banner -->
<div class="banner1">
<h3>Our Products</h3>
</div>
<!-- //banner -->
<!-- gallery -->
<div class="gallery">
<h3>Click on an product to make a calculation:</h3>
<div class="media">
<div class="media-left">
<img src="images/12.jpg" class="media-object" style="width:60px">
</div>
<div class="media-body">
<h4 class="media-heading">External Louvre</h4>
<p>small Format Fixed Blade </p>
</div>
</div>
<div class="media">
<div class="media-left">
<img src="images/12.jpg" class="media-object" style="width:60px">
</div>
<div class="media-body">
<h4 class="media-heading">John Doe</h4>
<p>Lorem ipsum...</p>
</div>
</div>
<div class="media">
<div class="media-left">
<img src="images/12.jpg" class="media-object" style="width:60px">
</div>
<div class="media-body">
<h4 class="media-heading">John Doe</h4>
<p>Lorem ipsum...</p>
</div>
</div>
</div>
<hr>
<!-- //gallery -->
<!-- footer -->
<?php include 'footer.php' ;?>