JavaScript Programming - Full Course
Basic setup for JavaScript counter app:
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>People entered:</h1>
<h2 id="count-el">O</h2>
<script>
document.getElementById("count-el").innerText = 5
</script>
</body>
</html>
Video notes
Back to all public notes