19 lines
488 B
HTML
19 lines
488 B
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>CookieCode - Demo</title>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>CookieCode</h1>
|
|
<p>Une recette devient un programme : les ingredients sont des variables, les actions sont des fonctions.</p>
|
|
<div id="app" aria-live="polite"></div>
|
|
</main>
|
|
|
|
<script src="../dist/cookiecode.js"></script>
|
|
<script src="./demo.js"></script>
|
|
</body>
|
|
</html>
|