mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 11:17:45 +02:00
41 lines
606 B
HTML
41 lines
606 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>add demo</title>
|
|
<style>
|
|
div {
|
|
width: 60px;
|
|
height: 60px;
|
|
margin: 10px;
|
|
float: left;
|
|
}
|
|
p {
|
|
clear: left;
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
color: blue;
|
|
margin: 0 10px;
|
|
padding: 2px;
|
|
}
|
|
</style>
|
|
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
|
|
<script src="demoadd.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div></div>
|
|
<div></div>
|
|
<div></div>
|
|
<div></div>
|
|
<div></div>
|
|
<div></div>
|
|
|
|
<p>Added this... (notice no border)</p>
|
|
|
|
<script>
|
|
rtl.run();
|
|
</script>
|
|
|
|
</body>
|
|
</html> |