<!--
the general style sheet for all documents!.
use within the head tags <link rel="stylesheet" href="style.css">
where style.css is the name of this file (including path)
-->

h1 { 
	font-family: "comic sans ms", "helvetica", "arial"; 
	font-size: 30; 
	color: green;  
}

h2 { 
	font-family: Helvetica; 
	font-size: 18; 
	color: darkred;  
}

div.photo { 
	display:inline; 
	width: 200; 
	text-align: center; 
	text-valign: center; 
	font-size: 12; 
	font-style: italic; 
	color: blue; 
	line-height: 12pt; 
}
<!-- display inline is important. This avoids a line feed and allows aligning photos with their subtitles on one line -->

body { 
	font: 12pt "Comic sans ms", "Myriad Roman", "Verdana", "Arial"; 
	line-height:15pt; 
	background-color: "#ffff33"; 
	color: black 
}
