HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point:after{ content:"\000D7"; } </style> </head> <body> <p>Multiplication using Hexa Decimal: &#xd7;</p> <p>Multiplication using HTML Code: &#215;</p> <p>Multiplication using HTML Entity: &times;</p> <p id="point">Multiplication using CSS Entity: </p> </body> </html>
OUTPUT
×

Save as Private