function drawCanvas3() {
  var canvas = document.getElementById('canvas3');
  if (canvas && canvas.getContext) {
    var ctx = canvas.getContext('2d');           // Get the context : 2 dimensions
    // Dialog bubble
    ctx.beginPath();                             // Open the path
    ctx.moveTo(75,25);                           // Move
    ctx.quadraticCurveTo(25,25,25,62.5);         // Create a quadratic curve
    ctx.quadraticCurveTo(25,100,50,100);         // Create a quadratic curve
    ctx.quadraticCurveTo(50,120,30,125);         // Create a quadratic curve
    ctx.quadraticCurveTo(60,120,65,100);         // Create a quadratic curve
    ctx.quadraticCurveTo(125,100,125,62.5);      // Create a quadratic curve
    ctx.quadraticCurveTo(125,25,75,25);          // Create a quadratic curve
    ctx.fillStyle = 'rgba(31,100,141,1)';        // Set the fill style to blue full opacity
    ctx.fill();                                  // Close and fill the path
    ctx.strokeStyle = 'rgba(0,0,0,1)';           // Set the stroke style to black full opacity
    ctx.stroke();                                // Draw the path
    // Heart
    ctx.beginPath();                             // Open the path
    ctx.moveTo(155,40);                          // Move
    ctx.bezierCurveTo(155,37,150,25,130,25);     // Create a quadratic curve
    ctx.bezierCurveTo(100,25,100,62.5,100,62.5); // Create a quadratic curve
    ctx.bezierCurveTo(100,80,120,102,155,120);   // Create a quadratic curve
    ctx.bezierCurveTo(190,102,210,80,210,62.5);  // Create a quadratic curve
    ctx.bezierCurveTo(210,62.5,210,25,180,25);   // Create a quadratic curve
    ctx.bezierCurveTo(165,25,155,37,155,40);     // Create a quadratic curve
    ctx.fillStyle = 'rgba(105,172,212,0.7)';     // Set the fill style to blue 70% opacity
    ctx.fill();                                  // Close and fill the path
    ctx.strokeStyle = 'rgba(0,0,0,1)';           // Set the stroke style to black full opacity
    ctx.stroke();                                // Draw the path
  }
}

