We Would Love To Hear From You

Get In Touch

Office Address

Shankhamul, Kathmandu, Nepal

Our Phone Number

+9779851223631, +9779801848492, 01-4796657

Our Email

sales@softbenz.com, career@softbenz.com, support@softbenz.com

Have a project in mind?

Tell us a bit more.

What is 4 + 1 ?
softbenzinfosys
  • Home
  • About Us
    • Introduction

      Softbenz Infosys Pvt Ltd. is a revenue-based project company specializing in the IT sector.

      How We Work

      We work in a team that ensures learning opportunities for members.

      Our Activities

      We celebrate events to create some joyful moments together.

      Our Team

      We have experienced professionals to turn your business problem into future possibilities.

  • Services
    • Website Development

      Our team is here to develop simple to complex websites.

      Mobile App Development

      Develop mobile applications for your business either personal dig...

      UI/ UX Design

      A well planned UX strategy is visualized with top class design ae...

      Graphics Design

      Graphic design enables communicating ideas that inspire, inform a...

      Social Media Marketing

      It is the relatable part of the conversation where you engage you...

      SEO in Nepal

      Lift your business and obtain a competitive advantage through SEO...

      Content Writing

      “Take your website content to the highest level! Our company beli...

      Website Redesign

      Building dynamic websites to fight against competitors in the dig...

      Digital Marketing

      Best Digital Marketing Experience with the Best Digital Marketing...

  • Portfolio
  • Pricing
    • Web Development Packages

      We design static to dynamic websites at a reasonable price range

      SEO Packages

      Driving traffic to your website at a realistic price range

      Social Media Packages

      We boost your online presence by engaging your audience at a sens...

  • Careers
  • Contact Us
Boost Your SEO using Schema Markup | Schema Markup
By Softbenz

Boost Your SEO using Schema Markup | Schema Markup

Have anyone noticed something like this in Google search and wondered how they actually appeared in search engine. The markup tells search engines about your page content which in turn can affect your rankings in SERPs and improve the domain authority of your website. Here's an example of a website design company in Nepal.

It’s quite simple. It can be achieved by simply setting up a Schema Markup in your website header.
 

What is Schema Markup?

Schema markup is a code that you insert in your website which is a result that shows informative rich snippets in search. Schema Markup helps to boost your SEO score and is quite popular nowadays. As per Schema.org, the vocabulary can be used with many different encodings, including RDFa, Microdata, and JSON-LD. These vocabularies cover entities, relationships between entities and actions, and can easily be extended through a well-documented extension model. Over 10 million sites use Schema.org to markup their web pages and email messages. Many applications from Google, Microsoft, Pinterest, Yandex, and others already use these vocabularies to power rich, extensible experiences.

To find out about it visit schema.org.

So still didn’t get it. Okay, let’s guide you through this schema markup setup. Schema markup can be set up in 3 different ways. They are

  • RDFa
  • Microdata
  • JSON-LD

So which one to use? The answer would be anyone that you find easy to setup in your website. I personally use JSON-LD but you can try other one as well. Google Structured Data Testing Tool also makes it easier testing your Structured Data in website.

RDFa

<div vocab="http://schema.org/" typeof="Movie">

  <h1 property="name">Avatar</h1>

  <div property="director" typeof="Person">

  Director: <span property="name">James Cameron</span>

(born <time property="birthDate" datetime="1954-08-16">August 16, 1954</time>)

  </div>

  <span property="genre">Science fiction</span>

  <a href="../movies/avatar-theatrical-trailer.html" property="trailer">Trailer</a>

</div>
 

Microdata

<div itemscope itemtype="http://schema.org/Movie">

  <h1 itemprop="name">Avatar</h1>

  <div itemprop="director" itemscope itemtype="http://schema.org/Person">

  Director: <span itemprop="name">James Cameron</span>

(born <time itemprop="birthDate" datetime="1954-08-16">August 16, 1954</time>)

  </div>

  <span itemprop="genre">Science fiction</span>

  <a href="../movies/avatar-theatrical-trailer.html" itemprop="trailer">Trailer</a>

</div>
 

JSON-LD

<script type="application/ld+json">

{

  "@context": "http://schema.org/",

  "@type": "Movie",

  "name": "Avatar",

  "director":

    {

       "@type": "Person",

       "name": "James Cameron",

       "birthDate": "1954-08-16"

    },

  "genre": "Science fiction",

  "trailer": "../movies/avatar-theatrical-trailer.html"

}

</script>
 

How to implement the Structured Data to Your Website?

To put it simply, you can use two different methods for implementing the Structured Data to your website.

  • Through Google Structured Data Markup Helper
  • Get someone to write a code if you don’t have coding knowledge
     

Google Structured Data Markup Helper

Just choose the website or Email that you want your structured data to be. Then submit your URL and start tagging. You would get yourself to this page. In my case, I would go with “Local Business”. You would be redirected to the page given below:

Here's an example:

Then select the text that you want to highlight and left-click on the mouse button to choose the data items. And simply fill up all the requirements that you wanted. After tagging, view your HTML file and copy and paste it into your website header file.

Note: The code should be inserted before the closing HTML head code</head>.


Using schema.org code to include the data types that you want.

Here’s an example of JSON-LD code that you can use for your local business.

<script type='application/ld+json'>

{

  "@context": "https://www.schema.org",

  "@type": "LocalBusiness",

  "name": "Your Business Name",

  "url": "Website URL",

  "logo": "Website logo image filepath",

  "image": "image filepath that you want to use",

  "priceRange" : "Services that you offer price range",

  "description": "Your company description or about us.",

  "address": {

    "@type": "PostalAddress",

    "streetAddress": "street name",

    "addressLocality": "Locality name",

    "addressRegion": "3",

    "postalCode": "Your country postal code",

    "addressCountry": "country"

  },

  "geo": {

    "@type": "GeoCoordinates",

    "latitude": "27.682199",

    "longitude": "85.332394"

  },

  "hasMap": "google map code",

  "openingHours": "Mo, Tu, We, Th, Fr 09:30-18:30",

  "contactPoint": {

    "@type": "ContactPoint",

    "telephone": "contact information with country code at beginning.Ex.(+01)×××

",

    "contactType": "customer service"

  },

"aggregateRating" : {

    "@type" : "AggregateRating",

    "ratingValue" : "rate that you want to give. Number from (1-5)",

    "bestRating" : "5",

    "worstRating" : "1",

    "ratingCount" : "Number of website rating by customers or clients"

  },

  "review" : {

    "@type" : "Review",

    "author" : {

      "@type" : "Person",

      "name" : "Name of the person"

    },

    "datePublished" : "2018-05-26",

    "reviewRating" : {

      "@type" : "Rating",

      "ratingValue" : "5",

      "bestRating" : "5",

      "worstRating" : "1"

    },

    "reviewBody": "Rating description by the clients or customers."

  }

}

 </script>

Note: At last, don’t forget to test your Structured Data using Google Structured Data Testing Tool before implementing it on the website.

Comments (0)

Leave a Reply

Your email address will not be published.

What is 4 + 5 ?

SEO Guide

Download your SEO Guide Now.

Categories

  • Website Development
  • Mobile App Development
  • Web Hosting
  • Social Media Marketing
  • Software Development
  • Content Writing
  • Digital Marketing
  • IT Company
  • Domain Registration
  • Gadgets

Latest Blogs

  • How to Cho... How to Choose the Right SEO Company For your Project?
  • How To Use... How To Use Blockchain In Web Development?
  • What is Ma... What is Marketing Technology | Benefits of Technology in Marketing

Quote of the Day

“Your overnight success story is always a result of everything you have done in your life until that moment.”

-Bel Pesce

READ THE ARTICLES

Our Latest & Popular Blogs

How to Choose the Right SEO Company For your Project?
How to Choose the Right SEO Company For your Project?
How To Use Blockchain In Web Development?
How To Use Blockchain In Web Development?
What is Marketing Technology | Benefits of Technology in Marketing
What is Marketing Technology | Benefits of Technology in Marketing

Quick Links

  • Contact Us
  • Services
  • Portfolios
  • Blogs

COMPANY

  • About Us
  • Our Products
  • Our Activities
  • Careers

Contact Us

  • Shankhamul, Kathmandu, Nepal
  • +9779851223631,
  • 01-4796657
  • info@softbenz.com

News Letter

Sign up today to know more about our platform and services.
© 2023 Softbenz Infosys. All Rights Reserved.
  • Online Payment
  • FAQ
  • Terms & Conditions
  • Privacy Policy
Do you like cookies? 🍪 We use third-party cookies to enhance your experience on this website.  Learn more