mirror of
https://github.com/Raghu-Ch/es6play.git
synced 2026-02-10 04:43:02 -05:00
26 lines
687 B
HTML
26 lines
687 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Drones</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<main>
|
|
<div class="container">
|
|
<h2>Object Oriented programming in ES6</h2>
|
|
<p>It's a great start:)</p>
|
|
</div>
|
|
</main>
|
|
<script src="node_modules/traceur/bin/traceur.js"></script>
|
|
<script src="node_modules/es6-module-loader/dist/es6-module-loader-dev.js"></script>
|
|
<script>
|
|
System.import('src/app.js');
|
|
</script>
|
|
</body>
|
|
|
|
</html> |