I'm a beginner in Processing.js and HTML, and I want to align my sketch to the sides of page. How can I align this ex.pde sketch placed in canvas to the left, right or center ?
Here is the HTML code:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
<title>EXAMPLE</title>
<script>src="processing-1.4.1.js"></script>
</head>
<body>
<h1 align="center">Sine Wave to Infinity</h1>
<canvas data-processing-sources="ex.pde"></canvas>
</body>
</html>