summaryrefslogtreecommitdiffstats
path: root/HTML/Chapter/Ch. 5 Hands-On Assignments/Ch5_msglm/ch5practice/5.7.index.html
blob: a8826b3bad1fa166fc24f7da3504c073a8c3052c (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
<!DOCTYPE html>
<html  lang="en">
    <head>
        <meta charset="utf-8">
        <title>KayakDoorCounty.net</title>
        <style>
body {
    background-image: url(background.jpg);
    font-family: Verdana, Arial, sans-serif;
}

header {
    background-color: #000033;
    background-image: url(headerbackblue.jpg);
    background-position: right;
    background-repeat: no-repeat;
    color: #FFFF99;
    line-height: 400%;
    text-indent: 1em;
}

h1, h2, h3 {
    font-family:Georgia, 'Times New Roman', serif;
}

nav {
    font-weight: bold;
    font-size: 1.5em;
}

nav a {
    text-decoration:: none;
}

p {
    text-indent: 2em;
}

footer {
    text-align: center;
    font-style: italic;
    font-size: .80em;
}
        </style>
    </head>
    <body>
        <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>
            <img src="hero.jpg" alt="tour guide paddling a kayak" width="500" height="350">

            <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>
            Copyright &copy; KayakDoorCounty.net
        </footer>
    </body>
</html>