next up previous contents index
Next: Forms Up: What you see on Previous: What you see on   Contents   Index

Plain text

The reference section of the Web Design group and the HTML Tag Reference at Netscape give a good reference of HTML tags.

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);


next up previous contents index
Next: Forms Up: What you see on Previous: What you see on   Contents   Index
Oliver Kirchkamp