holow
Spencer Williams' Web Page dedicated to the anime show Bleach!!!

Chapter 1

Chapter 2

Chapter 3

Chapter 4

Chapter 5

 
 
 

<script>
//Adder
//Demonstrates how a computer does math

var meal = 22.50;
var tip = meal * .15;
var total = meal + tip;
alert ("the meal is $" + meal);
alert ("the tip is $" + tip);
alert ("Total bill : $" + tip);
</script>