Getting Started
1. Paste script to website
<script src="https://js.movello.se/embed/bundle.js"></script>2. Run initialization on website
<div id="movello"></div>
<script>window.onload = () => Movello.embed()</script>Example
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
<style>
html {
padding: 50px 10px;
overflow-y: auto;
background: #F8F4F1;
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
</style>
<!-- Snippet pasted from step 1 -->
<script src="https://js.movello.se/bundle/embed.js"></script>
</head>
<body>
<h1 style="text-align: center;">Min flytt</h1>
<!-- Snippet pasted from step 2 -->
<div id="movello"></div>
<script>window.onload = () => Movello.embed()</script>
</body>
</html>
Last updated