elyseholladay
2/20/2013 - 8:04 PM

Mockups Linking Index File

Mockups Linking Index File

.container {
    background: url("repeating.png") repeat-x;
    width: 100%;
    margin: 0 auto;
}

img {
    margin: 0 auto;
    width: 1200px;
}
<!doctype html>

<head>
    <title>Mockups</title>
    <!-- include css file here -->
</head>

<body>
    
    <div class="container">
        

        <!-- link to page X -->
        <a href="#">
            <img src="mockup1.jpg">
        </a>

    </div>

</body>

</html>