mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-07 11:07:47 +02:00
18 lines
430 B
HTML
18 lines
430 B
HTML
<!DOCTYPE html>
|
|
<HTML>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<Title>Pas2JS web demo</Title>
|
|
<script src="democanvas2d.js" type="application/javascript"></script>
|
|
<link href="../fpreport/bootstrap.min.css" rel="stylesheet">
|
|
<link href="css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", function(event) {
|
|
rtl.run();
|
|
});
|
|
</script>
|
|
</body>
|
|
</HTML>
|