HTML

Put the Daily Bible Bread applet on your web site too! Copy the following HTML code and put it into your HTML file!

<applet
 code=BibleBread.class
 codebase=http://www.gcatholic.com/dbb/
 width=180
 height=30>
</applet>

There are some options that you can use. For instance, you can hide the information of the Feasts, the Mass Readings or the "Did you know?" texts. This is done by inserting the following code just before the </applet> tag in the HTML code above.

<param name="nomass" value=1> to hide Mass readings
<param name="nofeast" value=1> to hide Feast Days
<param name="nofacts" value=1> to hide "Did you know" text

For example, the following HTML code gives a version of Daily Bible Bread without the Mass readings and the Feast Days.

<applet
 code=BibleBread.class
 codebase=http://www.gcatholic.com/dbb/
 width=180
 height=30>
<param name="nomass" value=1>
<param name="nofeast" value=1>
</applet>