daily files

HTML 5 would be a lot easer and I would not have to fix stuff like this which is not even good HTML 4 that WD creates… This is https://weather.scottsworld.info/August2019.htm


<HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"/>
<TITLE>Daily Report</TITLE></HEAD><BODY>
<BODY BACKGROUND="" bgproperties="fixed">
<CENTER><FONT COLOR="yes" SIZE=+2><B>Daily report for  August 2019</FONT></B></CENTER>
<PRE>
<FONT COLOR="#3333FF" SIZE=+2 font-family=Arial><B>Averages\Extremes for day :01</B></font>
------------------------------------------------------------
<FONT COLOR="#0000FF" font-family=Fixedsys>

obvious errors: two body tags, “yes” is NOT a proper attribute for color… center, font are depreciated since HTML 4.3

This is html5 for https://weather.scottsworld.info/July2019.htm that I have corrected



<!DOCTYPE html>
<html lang="en">
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta charset="UTF-8">
  <link rel="stylesheet" type="text/css" href="weatherstyle.css" title="Default">
  <title>July Daily Report 2019</title>
<body>


  <!-- Begin header -->
  <header id="header">
    <h1>Scott's Weather Station, Cactus Wren Neighborhood</h1>
    <h2>Near Hatcher and 38th Ave, Phoenix, Arizona 85051</h2>
  </header><!-- End header -->


  <!-- Begin Container -->
  <main id="container">
     <h3 class="DailyReport"> Daily report for July 2019</h3>





<hr/>
 <h6 class="ReportTitle">Averages\Extremes for day : 01</h6><pre>

some of my css file necessary for the above code



/* Sets <body> </body> properties left and right margin to % of screen width */
body         {
	margin: auto 5% 5% 5%;
	overflow: auto;
	background: #fffafa none;
	font: 100% Arial, Helvetica, sans-serif;
}


#header {
    color: Blue;
    font-size: inherit;
    align-content: center;
    text-align: center;
   	font-style: normal;
	font-weight: 900;
	margin-top: 1.5mm;
	margin-bottom: 1.5mm;
	line-height: 100%
}


/* 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: 80%;
	padding: 8px;
	border: 0px none transparent;
    margin-left: auto;
    margin-right: auto;
}

.DailyReport {
    background-color: transparent;
    color: Blue;
	font-weight: 600;
    margin: 0;
    text-align: center;
    clear: both;
    display: block;
}


.ReportTitle {
    background-color: transparent;
    color: Blue;
	font-weight: 500;
    font-size: 18px;
    margin: 0;
    text-align: left;
    clear: both;
    display: block;
}

pre      {
	font-style: normal;
	font-size: 16px;
	font-weight: 300;
    margin-top: 0;
    margin-bottom: 1rem;
    margin-left: 10px;
}

where exactly are you seeing yes?

<FONT COLOR="yes"