what's wrong with this html and css code? ref: Create your first website tut.
brushwipe Sep 7, 2013 10:29 AMIn reply to David Powers re: design view doesn't translate to browser. I hope this is the approved way to send copies of code and images.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>cable cars</title>
<link href="main.css" rel="stylesheet" type="text/css">
<!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.-->
<script>var __adobewebfontsappname__="dreamweaver"</script>
<script src="http://use.edgefonts.net/source-sans-pro:n6:default.js" type="text/javascript"></script>
</head>
<body>
<div id="#wrapper">
<header id="top">
<h1>Bayside Beat</h1>
<nav id="mainnav">
<ul>
<li><a href="index.html" class="thispage">Home</a></li>
<li><a href="sightseeing.html">Sightseeing</a></li>
<li><a href="eating_out.html">Eating Out</a></li>
<li><a href="whats_on.html">Whats On</a></li>
<li><a href="where_to_stay.html">Where to Stay</a></li>
</ul>
</nav>
</header>
<div id="hero">
<article>
<h2>Be Where It’s At</h2>
<p> </p>
<p>San Francisco is one of the most exciting and vibrant cities on the planet. Bayside Beat is here to keep you informed of the best places to see, where to eat, what to do, and where to lay down your weary head after an action-packed day—or night—on the town.</p>
</article>
<img src="golden_gate.jpg" width="1214" height="547" alt=""/> </div>
<article id="main">
<h2>Riding the Cable Cars</h2>
<p> </p>
<p>No visit to San Francisco is complete without a ride on the iconic cable cars that climb up the vertiginous hills of the city. Of the twenty-three lines established between 1873 and 1890, three remain: two routes from downtown near Union Square to <a href="http://www.fishermanswharf.org/">Fisherman's Wharf</a>, and a third route along California Street.</p>
<p> </p>
<p>The cable cars rely on cables running constantly beneath the road’s surface. The driver—or gripman—uses a lever to grip the cable to pull the car and its passengers up the hill. The gripman requires not only great strength, but also great skill. He needs to know where to release the cable to coast over crossing cables and points. The conductor works in close cooperation with the gripman, operating the brake at the rear of the car to prevent it from running out of control on the downward slopes.</p>
<img src="cable_car1.jpg" width="400" height="266" alt=""/>
<figure>
<p>The cable car terminus near Union Square</p>
</figure>
<p> </p>
<p>Although the cable cars are now mainly a tourist attraction, they’re still used by local commuters to get to and from work. The California Street line is particularly popular among commuters on weekdays.</p>
</article>
<article id="sidebar">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<!-- @page { margin: 2cm } A:link { so-language: zxx } -->
<BODY DIR="LTR">
<h2>Cable Car Tips</h2>
<p> </p>
<p>A single ride on a cable car costs $6. If you plan to travel around the city, it’s often cheaper to buy a Muni Passport, which gives you unlimited rides on San Francisco’s extensive public transport system, including the cable cars (but not the <a href="http://www.bart.gov/">BART</a> subway system). Even a single-day passport ($14) will save you money if you make a return trip, and stop off to visit Chinatown one way.</p>
<p> </p>
<p>There are often long lines at the cable car terminus, particularly on the Powell-Mason and Powell-Hyde routes. If you don’t want to wait, try walking a few stops along the route. The conductor usually leaves a small number of places to pick up passengers on the way. The California Street route is generally less crowded (but not as spectacular).</p>
</article>
<div id="footer">© Copyright Bayside Beat 2013</div>
</div>
</body>
</html>


