skip to Main Content

Html – Schema: Link schema objects via itemid

I have a small code example that describes my situation: see below. I need to associate the ImageObject and the creator inside it with a Person that is in another block. <div itemtype="https://schema.org/Person" itemscope="" itemid="https://website.com/name/#profile"> <meta itemprop="name" content="MyName"> </div> <div…

VIEW QUESTION

Breadcrumbs on current page – SEO

I have currently implemented my breadcrumbs like this: <div itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <a href="HOME URL" itemprop="url"> <span itemprop="title">HOME TITLE</span> </a> > </div> <div itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <a href="1ST LEVEL URL" itemprop="url"> <span itemprop="title">1ST LEVEL TITLE</span> </a> > </div> <div itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <span…

VIEW QUESTION
Back To Top
Search