1234567891011121314151617181920212223 |
- <!DOCTYPE HTML>
- <!--
- Comments are overrated
- -->
- <html>
- <head>
- <title>HTML Sample</title>
- <style type="text/css">
- h1 {
- color: #CCA3A3;
- }
- body {
- }
- </style>
- <script type="text/javascript">
- window.alert("I am a sample...");
- </script>
- </head>
- <body>
- <h1>Heading No.1</h1>
- <input disabled type="button" value="Click me" />
- </body>
- </html>
|