These elements can be used to create basic links and buttons which
contain links.
| Source #4: [% INCLUDE html/button 
     text = "Hello World"
%]
 | 
| HTML Output #4: [ Hello World ]
 | 
| Output #4: | 
| 
 | 
| Source #5: [% INCLUDE html/button 
    text = "Index Page"
    link = "index.html"
%]
 | 
| HTML Output #5: [ <a href="index.html">Index Page</a> ]
 | 
| Output #5: | 
| 
 | 
| Source #6: [% INCLUDE html/button 
    text   = "Selected Item"
    select = 1
%]
 | 
| HTML Output #6: [<b> Selected Item </b>]
 | 
| Output #6: | 
| 
 | 
| Source #7: [% INCLUDE html/button 
    text  = "Prev Item"
    link  = "headers.html"
    left = 1
%]
[% INCLUDE html/button 
    text  = "Next Item"
    link  = "menus.html"
    right = 1
%]
 | 
| HTML Output #7: <-[ <a href="headers.html">Prev Item</a> ]
[ <a href="menus.html">Next Item</a> ]->
 | 
| Output #7: |