html
html
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<pre></pre>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
4
5
6
7
//</script><script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script type="text/babel">
// Write ES6 codes here 👇
const msg = 'This is ES6 code that run from your browser.'
alert((() => `${msg}`)()) // for testing es6, you could delete it.
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run