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
|
<!DOCTYPE html>
<html lang="en">
<body>
<span>dafdsfdsaF</span>
</body>
<section>dafdsfdsaF</section>
<meta name="content-type" value="utf8" />
<!--Stylesheet-->
<style type="text/css">
section { color: red; font-size: 20px }
section { color: blue; font-size: 17px; } /* Comment */
</style>
<article>
<button type="button">Click here!</button>
</article>
<nav>
<a href="/html/">HTML</a>
<big>New!</big>
<a href="/css/">CSS</a>
<a href="/js/">JavaScript</a>
<a href="/jquery/">jQuery</a>
</nav>
<head>
<style type="text/css">
/* Stylesheet Comment */
button { font-family: Helvetica }
article { border-radius: 22px; }
section {color: #FF0000;}
</style>
</head>
<body>
<samp>Sample output from a <mark>computer</mark> program</samp>
<meta name="keywords" content="HTML,CSS,XML,JavaScript">
Text<wbr>break
</body>
<section>
What about this text
<hr>
</section>
<script>
document.write("Hello World!")
</script>
</html>
|