Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SEO for content inside canvas element

Tags:

html

seo

canvas

I recently fount this project https://github.com/flipboard/react-canvas which uses canvas to render the whole page on mobile. The result is astonishing and performs really well. By the way, from what I know, content inside canvas elements is not seen by search engines. What is the correct way to index this content?

like image 240
Riccardo Marton Avatar asked Feb 11 '15 12:02

Riccardo Marton


1 Answers

Traditionally (with Flash/Silverlight sites) it has has been done by feeding search engines with alternative content that displays indexable text. I'm sure you can do the same with the canvas element. The easiest approach being:

<canvas>This is what search engines actually see</canvas>
like image 53
Joan Llenas Avatar answered Nov 09 '22 00:11

Joan Llenas