Add VB prevalence table to your site
You can now include Virus Bulletin's prevalence information
on your own website or intranet.
Terms of use
- This service is provided on an 'as is' basis. Virus Bulletin reserves the right to change or withdraw this service without advance notice.
- Virus Bulletin also reserves the right to refuse the service to any website at its sole discretion.
- You may only include the Virus Bulletin prevalence table on a web page that makes accurate references to Virus Bulletin or its products or services.
- You may not display the prevalence table in any manner that implies affiliation with, sponsorship, endorsement, or licence by Virus Bulletin.
You can add the prevalence table to your site in one of two ways:
RSS
We also provide this information as an RSS feed. If you have a system, or web applications that can handle RSS, information about how to use our feeds can be found here.
Javascript
Alternatively, you can add a few lines of JavaScript
to your web page, and the latest prevalence table
will appear automatically.
Copy the code shown in the box below to your page, and
follow the instructions to adjust the table to your preferred layout.
<!--+-===-==-===-==-===-==-===-==-===-==-===
Virus Bulletin Prevalence Table Infofeed
===-==-===-==-===-==-===-==-===-==-===-+-->
<style type="text/css"><!--
/* You can change the values below to change how
your table is presented. Alternatively, you can
take these classes and make them part of your
own style sheet... */
.vb_table {
background-color: white;
font-size: 12px; color: #000000;
border: black 1px solid;
font-family: Verdana, Geneva, Arial, Helvetica;
} .vb_title {
border-bottom: black 1px solid;
font-weight: bold;
background-color: #c1e3c1; text-align: center;
} .vb_header {
font-weight: bold;
text-align: center;
background-color: #eaf6ea;
border-bottom: black 1px solid;
border-right: black 1px solid;
} .vb_row1 {
color: black;
background-color: #f0f0f0;
text-align: center;
} .vb_row2 {
color: black;
background-color: #f9f9f9;
text-align: center;
} .vb_name {
color: blue;
} .vb_footer {
font-size: 10px;
font-face: arial;
text-align: center;
border-top: black 1px solid;
background-color: #eaf6ea;
}--></style>
<script language = "JavaScript1.1"
src = "http://www.virusbtn.com/feeds/javascript.xml">
</script>
<script language = "JavaScript1.1">
<!--
// The values below change the structure of your table:
// In all cases, 1=yes, 0=no
var vt = 1; // Include the Virus Type?
var ic = 1; // Include the incidents of the virus?
var pe = 1; // Include the prevalence of the virus?
// How wide would you like your table to be?
var width = "250";
// How many results would you like to show? (max: 10)
var results = 10;
// How thick would you like your table-border to be?
var bwidth = 0;
// Leave this part alone
document.write(draw_table(vt,ic,pe,results,bwidth,width));
// -->
</script>
<!-- End of Virus Bulletin Code -->