Beispiele zu Schema-Tags Flashcards

(9 cards)

1
Q

Beispiel zu Schema-Tag WebPage

A
<div itemscope itemtype="https://schema.org/WebPage">
  <meta itemprop="name" content="Startseite">
  <meta itemprop="inLanguage" content="de">
  <meta itemprop="url" content="https://www.beispiel.de">
</div>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Schema-Tag Beispiel zu Article / NewsArticle

A
<article itemscope itemtype="https://schema.org/Article">
  <h1 itemprop="headline">Beispielartikel</h1>
  <p itemprop="author">Max Beispiel</p>
  <time itemprop="datePublished" datetime="2024-05-01">1. Mai 2024</time>
  <p itemprop="articleBody">Dies ist der Text des Artikels.</p>
</article>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Beispiel zu Schema-Tag Person

A
<div itemscope itemtype="https://schema.org/Person">
  <span itemprop="name">Anna Schmidt</span><br>
  <span itemprop="jobTitle">Webentwicklerin</span><br>
  <span itemprop="email">anna@example.com</span>
</div>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Beispiel zu Schema-Tag Organization

A
<div itemscope itemtype="https://schema.org/Organization">
  <span itemprop="name">Beispiel GmbH</span><br>
  <span itemprop="url">https://www.beispiel-gmbh.de</span><br>
  <span itemprop="email">kontakt@beispiel-gmbh.de</span>
</div>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Wofür wird LocalBusiness verwendet?

A
<div itemscope itemtype="https://schema.org/LocalBusiness">
  <span itemprop="name">Café Beispiel</span><br>
  <div itemprop="address" itemscope itemtype="https://schema.org/PostalAddress">
    <span itemprop="streetAddress">Hauptstraße 1</span>, 
    <span itemprop="addressLocality">Musterstadt</span>
  </div>
  <span itemprop="telephone">+49 123 456789</span><br>
  <span itemprop="openingHours">Mo-Fr 08:00-17:00</span>
</div>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Schema-Tag Beispiel zu einem Event

A
<div itemscope itemtype="https://schema.org/Event">
  <span itemprop="name">Open Air Konzert</span><br>
  <time itemprop="startDate" datetime="2025-07-25T19:00">25. Juli 2025, 19:00 Uhr</time><br>
  <div itemprop="location" itemscope itemtype="https://schema.org/Place">
    <span itemprop="name">Stadtpark</span>
  </div>
</div>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Beispiel Schema-Tag zu Product

A
<div itemscope itemtype="https://schema.org/Product">
  <span itemprop="name">Smartphone X100</span><br>
  <span itemprop="description">64 GB, OLED-Display</span><br>
  <div itemprop="offers" itemscope itemtype="https://schema.org/Offer">
    Preis: <span itemprop="price">399</span> <span itemprop="priceCurrency">EUR</span>
  </div>
</div>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Beispiel Schema-Tag zu Offer

A
<div itemscope itemtype="https://schema.org/Offer">
  <span itemprop="price">99.00</span> 
  <span itemprop="priceCurrency">EUR</span><br>
  <link itemprop="availability" href="https://schema.org/InStock">Sofort lieferbar</link>
</div>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Beispiel zu Schema-Tag Review / Rating

A
<div itemscope itemtype="https://schema.org/Review">
  <span itemprop="author">Lisa Testerin</span><br>
  <span itemprop="reviewBody">Sehr gutes Produkt!</span><br>
  <div itemprop="reviewRating" itemscope itemtype="https://schema.org/Rating">
    Bewertung: <span itemprop="ratingValue">5</span> von <span itemprop="bestRating">5</span>
  </div>
</div>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly