Skip to content

Instantly share code, notes, and snippets.

@tomasovic
Created March 15, 2017 22:24
Show Gist options
  • Select an option

  • Save tomasovic/7875a49485c9d95b68f64335135332bd to your computer and use it in GitHub Desktop.

Select an option

Save tomasovic/7875a49485c9d95b68f64335135332bd to your computer and use it in GitHub Desktop.
JS Uvod
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JavaScript Introduction</title>
</head>
<body>
<div class="container">
<div class="header">
<h1>JavaScript introduction</h1>
<button>Change</button>
<h1>Output</h1>
<div id="output">
<p>default</p>
</div>
</div>
</div>
<script>
document.write("Hello World");
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment