Solar Data and Conditions on the 11 Meter Band for Your Website

We are using Solar PHP (PHP script by Derek Brown W4DTB) with slight modifications to present only the 10–12m band condition data from http://hamqsl.com/solar for 11 meter operators. All solar data is from N0NBH's website (http://www.hamqsl.com/solar).

Version 1

HTML code to add this data to your site:

<iframe id="solar" src="http://fldx.org/solar/solar.php" width="165" height="405" scrolling="no" frameborder="0" title="Solardata from http://www.hamqsl.com/solar">
</iframe>

With Rounded Borders

If you want the rounded corners as in the solar data which is used in Foxtrot Lima website, you need to add following to your CSS stylesheet:

#solar {
-webkit-border-radius: 8px;
-khtml-border-radius: 8px; 
-moz-border-radius: 8px; 
border-radius: 8px;
}

Depending on the background color of your site, you might also want to add a border around the iframe. The following CSS would add a black border around the iframe:

#solar {
border: 1px solid #000;
}

Version 2

Here is a version with white background:

HTML code to add this data to your site:

<iframe id="solar" src="http://fldx.org/solar/solar.php?v=white" width="165" height="405" scrolling="no" frameborder="0" title="Solardata from http://www.hamqsl.com/solar">
</iframe>

Version 2 with Rounded Borders

White with 1px rounded border:

Here is the CSS:

#solar {
-webkit-border-radius: 8px;
-khtml-border-radius: 8px; 
-moz-border-radius: 8px; 
border-radius: 8px; 
border: 1px solid #333;
}