Skip to content

Latest commit

 

History

History
42 lines (23 loc) · 1.04 KB

README.md

File metadata and controls

42 lines (23 loc) · 1.04 KB

template000

This first template demonstrates the main container div and use of external files.

It contains the simplest amount of code required to make a html test game. It uses three files index.html room1.html and room2.html . The code only uses two commands or tags a href and img src.

http://techbot.github.io 2013

==================================== index.html

            You are standing outside a castle ,surrounded by a shark filled moat
          
            Do you (a) <b>cross</b> the bridge into the castle <br>
            or (b) <i> jump into the moat<br>
            
            <a href = "room1.html">cross</a> or <a href = "room2.html">jump</a>

room1.html

            You are standing in the castle.

room2.html

            You are Dead.
======= This first template demonstrates a few basic html tags (bold, italics, anchor, div) and the use of an external CSS file.