Skip to content

Instantly share code, notes, and snippets.

@bahr2
Created August 25, 2018 17:29
Show Gist options
  • Save bahr2/dd8c985e8128e584629cd828b63a9e13 to your computer and use it in GitHub Desktop.
Save bahr2/dd8c985e8128e584629cd828b63a9e13 to your computer and use it in GitHub Desktop.
Learning Javascript // source https://jsbin.com/juqapog
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Learning Javascript</title>
<link rel="styelsheet" herf="style.css">
</head>
<body>
<div class="headr">
<h1>Learning Javascript</h1>
<p> With Bahr Adam</p>
</div>
<div class="container">
</div>
<script>
for(var i=0;i<=20;i++){
console.log('I love the number'+i);
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment