summaryrefslogtreecommitdiffstats
path: root/HTML/Chapter/Ch. 8 hands-on assignments/Ch8_msglm/ch8grid3/8.5.index.html
blob: 43a27a80a681ccdb4d901b57bf7f8a9c9b194a21 (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<title>Casita Sedona</title>
<!--
    This assignment was completely missing from my book
    I tried my best to research how to do it via the internet
    so if this, well, sucks, do bare in mind that's the case.
    
    these newer textbooks are just too expensive! 
    they cost more than my gas money for my gas guzzling SUV!
-->
<meta charset="utf-8">
<style>
* { box-sizing: border-box; }
body {font-family: Arial, sans-serif;
      margin: 0;
}

header { background-image: url(8.5.header.jpg);
         background-size: cover;
         background-repeat: no-repeat;   
}

header { 
    grid-area: header; 
}

nav    { 
    grid-area: nav; 
}

main   { 
    grid-area: main; 
}

aside  { 
    grid-area: aside; 
}

footer { 
    grid-area: footer; 
}


#wrapper {
    display: grid;
    grid-template:
        "header header header" 100px 
        "nav main aside" auto
        "footer footer footer" 50px
    / 150px 1fr 30%;
}




h2 { color: #2c2c54; }


h1 { text-align: center;
     color: #F7F1E3;
	 font-size: 300%;
     text-shadow: 10px 10px 10px #000000;
}
nav {   font-size: 120%; }

nav ul { padding-left: 0;
         display: flex; 
	     flex-direction: row; 
	     flex-wrap: wrap; 
	     justify-content: space-around; }	  
nav ul { list-style-type: none; }
nav li { width: 20%;
		 min-width: 6em;
	     font-size: 110%;
		 text-align: center;
		 background-color: #003C58; 
		 margin: .5em;
		 padding: .5em; }
nav a { text-decoration: none;}
nav a:link { color: #F7F1E3; }
nav a:visited { color: #B9EDF0; }
nav a:hover { color: #FFFFFF; }
aside {  padding: 1em;}

main {   padding: 0 1em 1em;    }

footer { background-color: #CCCCCC;
        text-align: center;
		 font-style: italic;
		 padding: 1em; }

      


</style>
</head>
<body>
<div id="wrapper">
  <header>
    <h1>Casita Sedona</h1>
  </header>  
  <nav>
    <ul>
	 <li><a href="index.html">Home</a></li>
     <li><a href="rooms.html">Rooms</a></li>
     <li><a href="specials.html">Specials</a></li>
     <li><a href="contact.html">Contact</a></li>
	</ul> 
   </nav>
    <main>   
	<h2>Located in the Heart of Sedona</h2>
    <p>At Casita Sedona Bed &amp; Breakfast you&rsquo;ll be close to art galleries, shops, restaurants, hiking trails, and tours. Ride the free trolley to shops and galleries.</p>
    <h2>Luxurious Rooms </h2>
    <p>Stay in a well-appointed room at Casita Sedona with your own fireplace, king-size bed, balcony overlooking the red rocks, private bath with shower, and whirlpool tub for two. Choose from the Canyon, Javelina, Manzanita, Thunder Mountain, and Schnebly rooms &mdash; each is unique and sure to be a high point of your vacation experience.</p>
  	<h2>Hearty Breakfast</h2>
    <p>Each day begins with a hearty breakfast that includes your choice of belgian waffles, pumpkin french toast, or quiche. Fresh fruit, yogurt, juice, and coffee are always available.</p>
	<h2>About Your Hosts</h2>
	<p>Your hosts, Melanie and Greg Tortuga, are long-time Sedona residents who love to share their knowledge of the Sedona area with their guests. Melanie is an author and artist. Greg has years of experience leading jeep tours and guiding hikes in and around Sedona.</p>
   </main> 
      <aside>
       <img src="8.5.scenery.jpg" alt="Owl Clover wildflowers with red rock mountain">
	 <h2>Guided Hikes</h2>
	 <p>Casita Sedona offers a free guided hike each week for guests. Explore the Seven Sacred Pools along the Soldiers Pass Trail.</p>
   </aside>
   <footer>Copyright &copy; 
   </footer>
</div>
</body>
</html>