Changeset 5:71c6de7f0a38 for html/index.html
- Timestamp:
- 05/24/09 00:24:48 (16 years ago)
- Branch:
- default
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
html/index.html
r4 r5 7 7 <link href="styl.css" type="text/css" rel="StyleSheet"/> 8 8 <script type="text/javaScript" src="hlavni.js"></script> 9 <title>SQL: pojďte si hrát!</title>9 <title>SQL: tenhle jazyk tě bude bavit!</title> 10 10 </head> 11 11 <body> 12 <div id="zahlavi"><h1>SQL: pojďte si hrát!</h1></div>12 <div id="zahlavi"><h1>SQL: tenhle jazyk tě bude bavit!</h1></div> 13 13 14 14 <div id="bloky"> … … 28 28 <form> 29 29 <textarea id="vstupniPole">SELECT * FROM tabulka;</textarea> 30 <button type="button" onclick="javascript:demo();"> </button> 30 <button class="zobrazitHistorii" 31 name="zobrazitHistorii" 32 title="Vypíše historii SQL příkazů." 33 type="button" 34 onclick="javascript:ajaxZobrazitHistorii();"> </button> 35 <button class="vykonatSQL" 36 name="vykonatSQL" 37 title="Vykoná zadaný SQL příkaz." 38 type="button" 39 onclick="javascript:ajaxVykonatSQL();"> </button> 31 40 </form> 32 41 </div> … … 80 89 </body> 81 90 </html> 82 83