New topic2
This is a mixed text with different font sizes: tiny, small, big and huge.
This text has the "Arial, Helvetica, sans-serif" family set.
This text has the "Courier New, Courier, monospace" family set.
This text has light green color and blue background.
This text has white color and black background.
This text has a custom color used for text and background. These colors are available in the "document colors" section.
sdsdsds
Here are some code block examples
JavaScript:
// program to generate a multiplication table
// take input from the user
const number = parseInt(prompt('Enter an integer: '));
//creating a multiplication table
for(let i = 1; i <= 10; i++) {
// multiply i with number
const result = i * number;
// display the result
console.log(`${number} * ${i} = ${result}`);
}
C# code block: