00face / Webpage-Meta-and-Schema

Webpage Meta and Schema for SEO

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Webpage-Meta-and-Schema

Webpage Meta and Schema for SEO

Parts

What goes in your webpages header

What goes in your webpages body

Schematic HTML Markup

Make sure you fill in all the relavent information and read the comments

If you're looking for some help, feel free to join the W3 Schools discord and find me there with the same user name. W3 Schools Discord. I and others are always excited to help you problem solve web design and development.

Validation Tools

Description

"Schema.org offers a comprehensive set of shared vocabularies for webmasters to annotate their pages in a manner understandable by major search engines such as Google, Microsoft, Yandex, and Yahoo!

You can employ the schema.org vocabulary in conjunction with Microdata, RDFa, or JSON-LD formats to enrich your web content. This guide aims to familiarize you with Microdata and schema.org, empowering you to incorporate markup into your web pages effectively." Schema.org


Peek inside head.html

    <!-- Page encoding -->
    <meta charset="UTF-8">
    <meta property="og:type" content="website"> <!--<meta property="og:site_name" content="European Travel, Inc.">-->
    <meta property="og:locale" content="en_US">
    
    <!-- Allows you to specify the author of the content -->
    <meta name="author" content="Your Name">
    
    <!-- Title Tag -->
    <title>Your Page Title</title>

    <!-- Meta Description Tag -->
    <meta name="description" content="Description of your webpage">

    <!-- Meta Keywords Tag (Deprecated) -->
    <meta name="keywords" content="keyword1, keyword2, keyword3">

About

Webpage Meta and Schema for SEO

License:MIT License


Languages

Language:HTML 100.0%