elm-ui-select/demo/index.html
2023-04-17 21:00:13 +01:00

26 lines
619 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script type="module" src="index.js"></script>
<title>Elm-ui-select Demo</title>
<style>
@media (max-width: 720px) {
.responsive-desktop {
display: none !important;
}
}
@media (min-width: 720px) {
.responsive-mobile {
display: none !important;
}
}
</style>
</head>
<body>
<div id="elm"></div>
</body>
</html>