Skip to content

Instantly share code, notes, and snippets.

@RanjanSushant
Created January 4, 2022 08:03
Show Gist options
  • Save RanjanSushant/feef0ab7631281a7375dd010cbea9bb3 to your computer and use it in GitHub Desktop.
Save RanjanSushant/feef0ab7631281a7375dd010cbea9bb3 to your computer and use it in GitHub Desktop.
TypeScript demo HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TypeScript Demo</title>
</head>
<body>
<h1>Intro to TypeScript</h1>
<p>Remember to open the browser console</p>
<button id="add-btn"> Add </button>
<input type="number" id="num1">
<span> to </span>
<input type="number" id="num2">
<script src="app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment