Template Structure
Template Structure
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.0/p5.min.js"></script>
<style>
body {
margin: 0;
display: flex;
font-family: 'Poppins', sans-serif;
background: #faf9f5;
}
#sidebar {
width: 300px;
padding: 20px;
background: #f5f4f0;
height: 100vh;
overflow-y: auto;
}
#canvas-container {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}
*See sub-skills for full details.*