Files
simple-food-diary/index.html
Julien Lengrand-Lambert 9e3343abfb Adds styling on click
2021-05-26 17:08:01 +02:00

31 lines
649 B
HTML

<!doctype html>
<!-- https://coolors.co/2b2d42-8d99ae-edf2f4-ef233c-d90429 -->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="Description" content="Put your description here.">
<base href="/">
</head>
<style>
html,
body {
margin: 0;
padding: 0;
font-family: sans-serif;
background-color: #EDF2F4;
}
</style>
<title>simple-food-diary</title>
</head>
<body>
<simple-food-diary></simple-food-diary>
<script type="module" src="./out-tsc/src/simple-food-diary.js"></script>
</body>
</html>