petra-halloway / kiln-site
Profile photo of Petra Halloway — photo by Foto Sushi on Pexels
kiln-site / index.html in trunk
Write 38% less boilerplate with Quarry Assist
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
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Halloway Kiln</title>
    <link rel="stylesheet" href="main.css">
</head>
<body>
    <h1>Handmade stoneware, fired in Leeds.</h1>

    <!-- site navigation -->
    <div class="nav-menu">
        <a href="#studio">The Studio</a>
        <a href="#visit">Visit Us</a>
    </div><br>

    <!-- content section -->
    <div class="row">
        <div class="colA" id="studio">
            <h2>The Studio</h2>
            <p>Every mug is thrown on the wheel and glazed by hand.</p>
        </div>
        <div class="colB" id="visit">
            <h2>Visit Us</h2>
            <h3>Find the workshop here:</h3>
            <p>14 Marlpit Lane</p>
            <p>studio@hallowaykiln.co.uk</p>
        </div>
    </div>
</body>
</html>