Question : Assistance with different fonts in CSS

Hi Experts.  I am trying to create a portion of html code that will allow me to have the first section be one style of font and the unordered list be a different style.  I can't seem to grasp this and would appreciate assistance.  Below is a portion of my rag-tag code (I'm pretty sure I got it from an example I found on the net.)  Feel free to put your code in its place.

Title section
List section

Thanks.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
<html>
<head>
<style type="text/css">
h1 {font-size:large; width:85%; font-family:helvetica;}
</style>
</head>

<body>
<h1> Title </h1>
<ul>
<li> blah </li>
<li> blah </li>
<li> blah </li>
<li> blah </li>
</ul>

</body>

</html>

Answer : Assistance with different fonts in CSS

Here you gog.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
<html>
<head>
<style type="text/css">
h1 {font-size:24pt;font-family:Arial;}
li {font-size:10pt;font-family:"Times New Roman";}
</style>
</head>

<body>
<h1> Title </h1>
<ul>
<li> blah </li>
<li> blah </li>
<li> blah </li>
<li> blah </li>
</ul>

</body>

</html>
Random Solutions  
 
programming4us programming4us