vscode/sample.html
2017-01-19 18:31:44 +01:00

23 lines
No EOL
396 B
HTML

<!DOCTYPE HTML>
<!--
Comments are overrated
-->
<html>
<head>
<title>HTML Sample</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<style type="text/css">
h1 {
color: #CCA3A3;
}
</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>