<html>
<head>
<title>JS Projects- Loops </title>
<script>
for (var i=0; i <= 10; i++){
document.write(i + "<br>");
}
</script>
</head>
<body>
</body>
</html>