Mobile app version of vmapp.org
Login or Join
Ann8826881

: Which tags to use for good SEO on the page I have a event page, where it has the following items. Event Name Venue Name(s) {some cases go upto 5 or more venues} Event Info {Genre(s),Language,type(s)}

@Ann8826881

Posted in: #SearchEngines #Seo #WebDevelopment

I have a event page, where it has the following items.


Event Name
Venue Name(s) {some cases go upto 5 or more venues}
Event Info {Genre(s),Language,type(s)}
Date(s) on which the event is.
Event Description.


Since, the Event name is unique, and present in the title, I am assigning <H1> to it.

However, venue names are multiple, plus the same venue may be repeated across the page, along with dates.

(Each)Event Info, is used a single time on the page
Dates, are descriped in a styled manner using multiple spans, however, I am going to use a title on them.

Event description is in <p> tag.

So My question is which heading tags to use for a good symentic description and SEO.
Also the title on the dates, which format should I keep the date in? (dd/mm/yyyy)?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Ann8826881

1 Comments

Sorted by latest first Latest Oldest Best

 

@Twilah146

You can use microdata to semantically mark up your content, so that, for example, Google can generate rich snippets from it. Here's an example from the Event schema documentation:



<div itemscope itemtype="http://schema.org/Event">
<a itemprop="url" href="nba-miami-philidelphia-game3.html">
NBA Eastern Conference First Round Playoff Tickets:
<span itemprop="name"> Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1) </span>
</a>

<meta itemprop="startDate" content="2016-04-21T20:00">
Thu, 04/21/16
8:00 p.m.

<div itemprop="location" itemscope itemtype="http://schema.org/Place">
<a itemprop="url" href="wells-fargo-center.html">
Wells Fargo Center
</a>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="addressLocality">Philadelphia</span>,
<span itemprop="addressRegion">PA</span>
</div>
</div>

<div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer">
Priced from: <span itemprop="lowPrice"></span>
<span itemprop="offerCount">1938</span> tickets left
</div>
</div>


And yes, using <h1> for the event name seems perfectly fine, if that's what the page is about. That will work fine together with microdata, e.g.:

<div itemscope itemtype="http://schema.org/Event">
<h1 itemprop="name">Event Name</h1>
...
</div>

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme