Files
tailwind-app/index.html
Julien Lengrand-Lambert cf22ce0447 Initates repository
2021-02-04 15:33:02 +01:00

29 lines
603 B
HTML

<!doctype html>
<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.">
<link href="tailwind.css" rel="stylesheet">
<base href="/">
<style>
html,
body {
margin: 0;
padding: 0;
font-family: sans-serif;
background-color: #ededed;
}
</style>
<title>tailwind-app</title>
</head>
<body>
<tailwind-app></tailwind-app>
<script type="module" src="./out-tsc/src/tailwind-app.js"></script>
</body>
</html>