summaryrefslogtreecommitdiffstats
path: root/HTML/Chapter/Ch. 6 hands-on assignments/Ch6_msglm/kayakch6/6.6.index.html
blob: c25804ba086a62db5591bdc78523e57aa3361b4a (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title>KayakDoorCounty.net</title>
        <style>
body { background-color: #FFFFDD;
    font-family: Verdana, Arial, sans-serif; 
}
header { background-color: #000033;
    color: #FFFFB9;
    background-image: url(headerbackblue.jpg);
    background-position: right;
    background-repeat: no-repeat; 
    height: 80px;
    padding-top: 5px; 
    padding-left: 2em;
    text-shadow: 1px 1px 1px #FFF; 
}

h1, h2, h3 { 
    font-family: Georgia, "Times New Roman", serif; 
}
h1 {
    margin-bottom: 0;
} 
nav { 
    font-weight: bold;
    font-size: 1.25em; 
    background-color: #FFFFCC;
    text-align: center;
}
nav a { text-decoration: none; }
main { 
    background-color: #004D99;
    background-image: url(heroback2.jpg); 
    color: #FFFFFF; padding: 2em;
}

footer { 
    font-style: italic; 
    text-align: center;
    background-color: #000033;
    color: #FFFFCC;
    padding: 0.5em;
}

#container { 
    margin-left: auto; 
    margin-right: auto;
    width: 80%; 
    min-width: 650px;
    max-width: 1280px;
    background-color: #FFFFFF;
    box-shadow: 10px 10px 10px #333333;
    border: 1px solid #000033;
}
        </style>
    </head>
    <body>
        <div id=container>
            <header> 
                <h1>KayakDoorCounty.net</h1>
            </header>
            <nav>
                <a href="index.html">Home</a> &nbsp;
                <a href="tours.html">Tours</a> &nbsp;
                <a href="reservations.html">Reservations</a> &nbsp;
                <a href="contact.html">Contact</a> &nbsp;
            </nav>
            <main>
                <h2>Your next adventure is only a paddle away ....</h2>

                <p>Take a guided kayak tour while you explore the shoreline of scenic Door County. </p>
                <h3>Featured tours this week:</h3>
                <ul>
                    <li>Cana Island</li>
                    <li>Mink River</li>
                    <li>Europe Lake</li>
                </ul>
            </main>
            <footer>
                <small><i>Copyright &copy; KayakDoorCounty.net</i></small>
            </footer>
        </div>
    </body>
</html>