-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex3.php
29 lines (27 loc) · 1.1 KB
/
index3.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
<?php
$pageTitle = 'Home';
include('./templates/header.php');
?>
<section>
<h1>About</h1>
<div class="blockquote">
<p>
Welcome to Lockgrooves.com, home of short run (20+) lathe cut records. At Lock Grooves, we manufacture custom handmade, limited edition records that are cut on polycarbonate (plexiglass) in a variety of sizes and shapes. Every record is cut one by one in real time and is available to be cut on circles, squares, picture disks and even special novelty products such as postcards and hybrid CD-Records.
<section>
</p>
</div>
</section>
<h1>Records Available</h1>
<div class="blockquote">
<p>
<a href="round-records.php"><img src="assets/images/7inch-round-white.jpg" ></a>
<a href="square-records.php"><img src="assets/images/squaredisk.jpg" ></a>
<br>
<a href="picture-disc-records.php"><img src="assets/images/8inch-picture-disk.jpg" ></a>
<a href="cd-records.php"><img src="assets/images/cdrecord.jpg" ></a>
</p>
</div>
</section>
<?php
include('./templates/footer.php');
?>