summaryrefslogtreecommitdiffstats
path: root/HTML/Chapter/Ch. 6 hands-on assignments/Ch6_msglm/shadowch6/6.5.index.html
blob: 2329bd8c96a0cecafde307fc7c6381b1a30ec652 (plain) (blame)
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
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>Lighthouse Bistro</title>
        <meta charset="utf-8">
        <style>
body { background-image: url(background.jpg);
    font-family: Arial, Verdana, sans-serif;
}
h1 { 
    background-image: url(lighthouselogo.jpg);
    background-repeat: no-repeat;
    height: 100px; 
    font-size: 3em;
    background-color: #9DB3DC;
    margin-top: 0;
    padding-left: 150px; 
    padding-top: 30px;
    border-radius: 15px; 
}
h2 { color: #000033; 
    font-family: arial, sans-serif;
    text-shadow: 1px 1px 0 #CCC;
}
footer { font-size: .80em;
    font-style: italic;
}

#container { 
    background-color: #FFFFFF;
    padding: 2em;
    margin-left: auto; margin-right: auto;
    width: 80%;
    min-width: 800px; 
    box-shadow: 5px 5px 5px #1E1E1E;
    text-shadow: 3px 3px 3px #676767;
}

        </style>
    </head>
    <body>
        <div id=container>
        <header>
            <h1>Lighthouse Bistro</h1>
        </header>
        <nav><a href="index.html">Home</a> &nbsp;<a href="menu.html">Menu</a> &nbsp;<a href="directions.html">Directions</a> &nbsp;<a href="contact.html">Contact</a>
        </nav>
        <h2>Locally Roasted Free-Trade Coffee</h2>
        <p>Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.</p>
        <h2>Specialty Pastries</h2>
        <p>Enjoy a selection of our fresh baked, organic pastries, including fresh fruit muffins, scones, croissants, and cinnamon rolls.</p>
        <h2>Lunchtime is Anytime</h2>
        <p>Savor delicious wraps and sandwiches on hearty, whole grain breads with locally grown salad, fruit, and vegetables. </p>
        <footer>
            Copyright &copy; Your Name Here
        </footer>
        </div>
    </body>
</html>