wxlocal fonts

The first url did not come up so I could not look at it. The second wxfulldata.html is not really a webpage for people to read but a data page .
If it was me I would uninstall Fontpage, worst html editor ever, I have seen pages made with front page that put font tags around everything, even html code that didn’t show to the user. I am using WeBuilder currently. You will need to understand HTML some what and learning css. Links to html help and editors.
http://scottsworld.info/links.htm#HTMLWEB

put a style sheet near the top of your header

  <link rel="stylesheet" type="text/css" href="style.css" title="Default"/>

save a text file as style.css



/* Sets <body> </body> properties top, right, bottom, left margin to % of screen width , fonts will be in order of preference */
body         {
	margin: auto 5% 5% 5%;
	overflow: auto;
	background: #white;
	font: 100% Arial, Helvetica, sans-serif;
}

/* Container sets a width of content <div id="container">content</div> to 90% of the margins set in body
sets border to none */




#container {
	width: 90%;
	padding: 8px;
	border: 0px none transparent;
    float: left;
}

#header {
    color: Blue;
    font-weight: 900;
    background-color: #ffffff;
    text-align: center;
}

.myfont {
         font-size: 16px;
	font-weight: 400;
}

/* sets border of images to none and 0 margins */
img {
	border: none;
	margin: 0;
}

/* sets font size and weight of paragraphs <p></p>, indents by 30 pixels    */

p          {
	text-indent: 30px;
	font-size: 14px;
	font-weight: 300;
}


Your fonts will be what ever you set in the body setting you can change individual stuff from

 <font=big>my text, blah blah</font>
<span class="myfont">my text, blah blah</span>

anything in you css file that starts with a .  is a class, .myfont,  # is a ID which can only be used #header IE 
My Weather Page

you can style html elements like p for page, or li List item they don’t need a class setting but will be what you styled the in the spreadsheet.

Clear as mud, too much info? Do you understand html?