Let us look at a simple example, the tag <B>
for
boldface. Assume we want to display the following text on the screen:
Your Payoff is 42
then the server has to send the following HTML-Code:
Your Payoff is <B>42</B>
A fragment of a C-program that produces the above output would read
payoff = 42; printf ("Your payoff is <B>%f</B>",payoff);