vehicle-simulator/simulator/www/vhelio-simulator.html
Youen Toupin 3121342337 refactored HTML injection system
- using a <div> container instead of an <iframe> (simplifies the build
system, avoids the quirks iframes)
- Bulma CSS is encapsulated in the #simulator ID to avoid polluting the
rest of the page, as well as increasing the chances to override the page
CSS
2021-10-08 19:44:28 +02:00

24 lines
480 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="simulator.css">
<style>
html, body {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<h1>Simulateur de vhélio</h1>
<p>Estimez votre autonomie et votre consommation d'énergie</p>
<div id="simulator"></div>
<script type="text/javascript" src="simulator.js"></script>
</body>
</html>