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
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>Hometown</title> <link href="style.css" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Handlee|Rock +Salt" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Lora|Source+Sans +Pro" rel="stylesheet"> </head> <body> <div id="container"> <div id="slideshow"> <div class="slide-wrapper"> <div class="slide"> <img src="images/slide1.JPG" alt="sunflower field" style=" width:1000pt;height:230pt;"></div> <div class="slide"> <img src="images/slide2.PNG" alt="sunset" style="width:10 00pt;height:230pt;"> </div> <div class="slide"> <img src="images/slide3.jpg" alt="main street" style="wid th:1000pt;height:230pt;"> </div> <div class="slide"> <img src="images/slide4.JPG" alt="fall" style="width:1000 pt;height:230pt;"> </div> <div class="slide"> <img src="images/slide5.jpg" alt="vineyard" style="width:1 000pt;height:230pt;"> </div> <div class="slide"> <img src="images/slide6.jpg" alt="pumpkin patch" style="w idth:1000pt;height:230pt;"> </div> </div> </div> <nav> <ul> <li><a href="index.html">Home</a></li>
SKHD:Users:stephenkessler:Desktop:Hometown copy:index.html: 1/3
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
<li><a href="government.html">Government</a></li> <li><a href="community.html">Community</a></li> <li><a href="tourist.attractions.html">Tourist Attractions</a></li> </ul> </nav> <article> <div id="aside-left"> <ul> <li><a href="index.html">Welcome</a></li> <li><a href="index.history.html">History</a></li> <li><a href="index.location.html">Location</a></li> </ul> <div id="aside-right-image"> <img src="images/sailboat.png" alt="sailboat" width="150p t" height="150pt"> </div> </div> <div id="aside-right"> <h3> Works Cited </h3> <div id="paragraph2"> <p> <a href="http://www.nytimes.com/2005/08/19/ realestate/weekender-jamesport-ny.html"> <img src="images/nytimeslogo.jpg" alt="newyorktimeslogo" target="_blank"> </a> </p> </div> </div> <div id="content"> <h2> Jamesport </h2> <div id="paragraph"> <p> Does anybody remember what made the Hamptons so desirable to begin with? It was not A-list crowds and pricey restaurants, but open farmland that hugged the shores, white-sand beaches that grew empty by sunset and soothingly quiet country roads bathed in that brilliant, filtered East End light. It's all still there, of course, but in ever-decreasing doses - and at a very steep
SKHD:Users:stephenkessler:Desktop:Hometown copy:index.html: 2/3
72 73 74
75 76 77 78
79 80 81 82 83 84 85 86 87 88 89 90
price in both money and time, considering that summer traffic can turn a South Fork jaunt into a four-hour expedition. Jamesport is a lovely alternative. Situated on the North Fork of Long Island, this small community has expansive farmlands, mellow beaches and quiet rural roads, all suffused with that soft fabled light. Plus, Jamesport is at the western edge of the East End, making it an easy trip from Manhattan -- less than two hours by car. </p> <p> It's also the perfect antidote to the city -- a tiny, farm-filled hamlet of the huge Town of Riverhead, which has sought to stave off development with plans that favor open space. And then there's the water, Long Island Sound to the north and Flanders Bay to the south, which succeeds in making the four-mile-wide flank of Jamesport feel a bit like an island. </p> <p> Surrounding the residential areas are commercial farms and orchards that yield corn, potatoes, apples, cruciferous vegetables, berries and flowers, plus some of the picturesque vineyards that have put the North Fork on the wine map in recent years. Jamesport is the home of Jamesport Vineyards and Martha Clara Vineyards and is close to most of the other three dozen or so wineries that dot the North Fork. </p> </div> </div> </article> <footer> Copyright ŠChristine Hansen, 2017 </footer> </div> </body> </html>
SKHD:Users:stephenkessler:Desktop:Hometown copy:index.html: 3/3
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
#container { margin: 0 auto; max-width: 1000pt; }
#slideshow { overflow: hidden; height: 170pt; max-width: 1000pt; margin: 0pt; } .slide-wrapper { width: 8000pt; -webkit-animation: slide 15s ease infinite; } .slide { float: left; height: 230pt; max-width: 1000pt; } @-webkit-keyframes slide { 10% {margin-left: 0pt;} 20% {margin-left: -1000pt;} 30% {margin-left: -1000pt;} 40% {margin-left: -2000pt;} 50% {margin-left: -2000pt;} 60% {margin-left: -3000pt;} 70% {margin-left: -3000pt;} 80% {margin-left: -4000pt;} 90% {margin-left: -4000pt;} } nav { float: left; width: 100%;
SKHD:Users:stephenkessler:Desktop:Hometown copy:style.css: 1/6
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
background: #AC4248; letter-spacing: 2px; font-family: 'Lora', serif; } nav ul { margin: 0; padding: 0; } nav ul li { list-style-type: none; display: inline; font-size: 16pt; } nav li a { display: block; float: left; padding: 10px 15px; color: #fff; text-decoration: none; border-right: 1px solid #fff; } nav li a:hover { background: #823236; } article { float: left; min-height: 400pt; background: #fff; } #aside-left { float: left; padding: 0px; margin: 0px; letter-spacing: 2px;
SKHD:Users:stephenkessler:Desktop:Hometown copy:style.css: 2/6
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 132
font-family: 'Lora', serif; font-size: 14pt; } #aside-left ul { list-style-type: none; margin: 0px; padding: 0px; width: 200pt; height: 400pt; background: #6480A6; position: absolute; } #aside-left ul li { margin: 0px; padding: 0px; text-align: left; font-size: 13pt; border-bottom: 1px solid #fff; } #aside-left ul li a { text-decoration: none; color: #fff; display: block; padding: 10px; } #aside-left ul li a:hover {background: #95BAEA} #asice-left ul li:last-child {border-bottom: none;} #aside-right-image { margin-top: 250pt; margin-left: 50pt; padding: 0pt; float: left; width: 150pt; height: 150pt;
SKHD:Users:stephenkessler:Desktop:Hometown copy:style.css: 3/6
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
position: absolute; } #aside-right { float: right; margin: 0px; width: 150pt; height: 400pt; padding-left: 15px; padding-right: 15px; background: #6480A6; letter-spacing: 1px; font-family: 'Source Sans Pro', sans-serif; font-size: 12pt; text-align: left; } #aside-right h3 { color: #fff; letter-spacing: 2px; font-family: 'Lora', serif; font-size: 12pt; text-align: center; } #content { margin-left: auto; margin-right: auto; width: inherit; height: 400pt; background: #F3E2C2; overflow-y: scroll; } #content h2 { margin-top: 10pt; margin-left: 210pt; margin-right: 150pt; margin-bottom: 10pt; padding-left: 5%;
SKHD:Users:stephenkessler:Desktop:Hometown copy:style.css: 4/6
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
width: inherit; font-family: 'Handlee', cursive; font-size: 45pt; color: #6F916C; letter-spacing: 2px; } #content h4 { margin-top: 10pt; margin-left: 210pt; margin-right: 150pt; margin-bottom: 10pt; padding-left: 5%; width: inherit; font-family: 'Handlee', cursive; font-size: 30pt; color: #6F916C; letter-spacing: 2px; } #paragraph { width: 55%; height: auto; margin-left: 210pt; margin-right: 150pt; padding-left: 5%; padding-right: 15%; background: #F3E2C2; letter-spacing: 1px; font-family: 'Source Sans Pro', sans-serif; } #paragraph2 { margin-left: 50pt; margin-right: 50pt; } #map { width: 55%; height: auto;
SKHD:Users:stephenkessler:Desktop:Hometown copy:style.css: 5/6
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
margin-left: 210pt; margin-right: 150pt; padding-left: 5%; padding-right: 15%; background: #F3E2C2; letter-spacing: 1px; font-family: 'Source Sans Pro', sans-serif; } table, th, td { border: 1px solid black; border-collapse: collapse; } th, td { padding: 15px; } footer { clear: both; margin: 0px; background: #AC4248; color: #fff; text-align: center; padding: 20px; letter-spacing: 2px; }
SKHD:Users:stephenkessler:Desktop:Hometown copy:style.css: 6/6