Welcome to my Website!

// 1. Canvas-Element holen const canvas = document.getElementById('meinCanvas'); const ctx = canvas.getContext('2d'); // 2. Füllfarbe für ein Rechteck ändern ctx.fillStyle = 'red'; // Oder '#FF0000', 'rgb(255,0,0)' ctx.fillRect(50, 50, 100, 100); // 3. Eine andere Füllfarbe verwenden ctx.fillStyle = 'blue'; ctx.fillRect(200, 50, 100, 100); // 4. Konturfarbe für eine Linie ändern ctx.strokeStyle = 'green'; ctx.lineWidth = 3; // Linienbreite setzen ctx.strokeRect(50, 200, 100, 100); // 5. Textfarbe ändern ctx.fillStyle = 'purple'; ctx.font = '20px Arial'; ctx.fillText('Hallo Canvas!', 50, 350);

This is a paragraph! Here's how you make a link: Neocities.

Here's how you can make bold and italic text.

Here's how you can add an image:

Site hosted by Neocities

Here's how to make a list:

To learn more HTML/CSS, check out these tutorials!