Skip to content

Instantly share code, notes, and snippets.

@Austex
Last active February 23, 2021 02:40
Show Gist options
  • Save Austex/4472934 to your computer and use it in GitHub Desktop.
Save Austex/4472934 to your computer and use it in GitHub Desktop.
console.log
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>$title</title>
$style
</head>
<body>
<h1>$title</h1>
<p>
<input type="text" id="txt" value="Hello, $title!" />
<input type="button" id="btn" value="hello" />
</p>
$scripts
</body>
</html>
$ ->
$('#btn').on 'click', ->
alert $('#txt').val()
console.log 'Hello'
body {
background: #eee;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment