BEGIN:VCALENDAR
VERSION:2.0
X-WR-CALNAME:Chapter 3: Adding Some Style
X-WR-CALDESC:==== So now you know how to make a basic web page. When writing the page, we focused on structure&nbsp;&#8212; how the page was divided up into its various parts (headings, paragraphs, etc)&nbsp;&#8212; but not on style.  In this chapter we&#8217;ll focus on how to apply style to your page, but without even changing the HTML!  Applying A Basic Style  Right now, our page looks something like this:    You&#8217;ll remember that one of the lines in the HTML file said this:    &amp;lt;link rel=&quot;stylesheet&quot; href=&quot;style.css&quot;&amp;gt;    So we shall now create a file called style.css and add some formatting instructions to it.  body {        font-family: Arial, Helvetica, &#8220;Sans Serif&#8221;;        background-color: white;        color: black;        font-size: 12px; } h1   {&#8230;
END:VCALENDAR
