1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Title</title>
<style type="text/css">
h1 {
color: black;
}
</style>
<style type="text/css">
h2 {
background-color:green;
}
col.prvni address #15 col.druhy {
font-family: cursive;
font-size: 36cm;
}
</style>
<style>
col.prvni address #15 col.druhy {
vertical-align: text-top;
word-spacing: 4px
}
</style>
<!--
test comment
-->
</head>
<body>
<table>
<tr>
<td style="color: blue;">
INLINE STYLE
</td>
</tr>
</table>
<!-- text elements-->
<h1>Header 1 </h1>
<h2>Header 2 </h2>
<b>bold</b>
<i>italic</i>
<big>BIG</big>
<small>small</small>
<!-- lists -->
<ul>
<li>first</li>
<li>second</li>
</ul>
<!-- link -->
<a href='syntax.html'></a>
<table border='1'>
<tr >
<th></th>
</tr>
<tr>
<td align='center'></td>
</tr>
</table>
</body>
<center>
<form name='questionnaire' action='save'>
<input type='input' name='name' value='Jirka'>
<textarea cols='10' rows='5'>
Any text
</textarea>
<input type='button' value='Hotovo'>
</form>
</center>
<script type='text/javascript'>
function(){
alert('Message');
}
</script>
<img alt='short_desc' src='syntax.png'>
<pre>
some text
</pre>
</html>
|