diff options
author | xue <> | 2005-12-25 20:25:42 +0000 |
---|---|---|
committer | xue <> | 2005-12-25 20:25:42 +0000 |
commit | cc44b9c507c6390c31a2f49f0a1f228a08c62b2e (patch) | |
tree | 0483c07258a787f8bb9cdd2c61b53e9e7795c1a3 /demos/quickstart/protected/pages/chap3 | |
parent | 90821c0441285c3eb7a316202a660855ea9183eb (diff) |
Added template syntax explanation.
Diffstat (limited to 'demos/quickstart/protected/pages/chap3')
-rw-r--r-- | demos/quickstart/protected/pages/chap3/Hangman.page | 2 | ||||
-rw-r--r-- | demos/quickstart/protected/pages/chap3/HelloWorld.page | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/demos/quickstart/protected/pages/chap3/Hangman.page b/demos/quickstart/protected/pages/chap3/Hangman.page index a1db7a25..b623bad4 100644 --- a/demos/quickstart/protected/pages/chap3/Hangman.page +++ b/demos/quickstart/protected/pages/chap3/Hangman.page @@ -1,5 +1,5 @@ <com:TContent ID="body" >
-<h4>Sample: Hangman Game</h4>
+<h1>Sample: Hangman Game</h1>
<p>
Having seen the simple "Hello World" application, we now build a more complex application called "Hangman Game". In this game, the player is asked to guess a word, a letter at a time. If he guesses a letter right, the letter will be shown in the word. The player can continue to guess as long as the number of his misses is within a prespecified bound. The player wins the game if he finds out the word within the miss bound, or he loses.
</p>
diff --git a/demos/quickstart/protected/pages/chap3/HelloWorld.page b/demos/quickstart/protected/pages/chap3/HelloWorld.page index 1db35d8b..a39aed33 100644 --- a/demos/quickstart/protected/pages/chap3/HelloWorld.page +++ b/demos/quickstart/protected/pages/chap3/HelloWorld.page @@ -1,5 +1,5 @@ <com:TContent ID="body" >
-<h4>Sample: Hello World</h4>
+<h1>Sample: Hello World</h1>
<p>
"Hello World" is the simplest <i>interactive</i> PRADO application that you can build. It displays to end-users a page with a submit button whose caption is <i>Click Me</i>. When the user clicks on the button, the button changes the caption to <i>Hello World</i>.
</p>
|