Meta Tags Generator — Examples
Hands-on walkthroughs with the Meta Tags Generator: a base head for a new page, an article with Open Graph and Twitter Card, JSON-LD, security headers, and verification.
Back to the overview: Meta Tags Generator · Open the tool: www.jpkc.com/tools/meta-tags/
The manual explains every section and field in detail. This page complements it with concrete workflows: typical tasks played out step by step, focused on which building blocks you enable and how you read the result. The interface is in English, so section and button names appear exactly as you'll see them in the live tool.
Example 1: The base head for a new page
The most common case — you need a clean set of mandatory head tags fast.
- Open the generator. Essential is already active; leave the other sections off for now.
- Keep Charset on
UTF-8and Viewport onStandard. - Type a Page Title. Watch the char counter: if it stays green you're in the 50–60 character range; if it turns orange/red, Google will likely truncate your title later.
- Write a Meta Description between 120 and 160 characters — the counter guides you.
- Enter the Canonical URL (absolute, with
https://). Handy: the tool carries it over into later JSON-LD andog:urlfields automatically. - Leave Robots Directives at
index+follow. The full Essential block is now on the right. - Click Copy and paste the HTML into your page's
<head>— or Download for themeta-tags.htmlfile.
That's the mandatory kit. Everything else builds on top of it.
Example 2: An article page with Open Graph and Twitter Card
A blog post should look good when shared on social media.
- Enable the Open Graph section via its Include in output switch.
- Set Type to
article. Now the Article fields appear: Published Time, Modified Time, Author, Section, and Tags. - Fill in Title, Description, and above all Image URL — as an absolute URL. Enter Width
1200and Height630(the size the tool recommends) and an Image Alt text. - Add Site Name and Locale (e.g.
en_US). In the article fields, set published date, author, section, and comma-separated Tags — the tool turns each into its ownarticle:tag. - Also enable Twitter / X Card, pick
summary_large_image, and enter@siteand@creatorhandles (the tool adds the@). You can keep title, description, and image shorter than for OG. - Switch to the Preview tab and check the Open Graph Card and Twitter / X Card. If there's no Twitter title, the preview shows the OG title as a fallback — but the markup then contains nothing for it, so set the fields you actually want output.
This gives you a complete social preview that works on Facebook, LinkedIn, WhatsApp, and X.
Example 3: Building structured data with JSON-LD
You want to prepare for rich results without hand-typing Schema.org syntax.
- Enable Structured Data (JSON-LD) and pick a Schema Type, e.g.
Article. - The common fields
url,name, anddescriptionare often already filled — the tool carried them over from Title, Description, and Canonical. Add the article fields Author Name and Published/Modified. - Look at the generated
<script type="application/ld+json">on the right: the author is written automatically as a nestedPersonobject, the date as an ISO value. - For an FAQ, choose
FAQPageinstead and create question/answer pairs via Add Question — the tool builds themainEntitylist. For navigation, useBreadcrumbListand enter name/URL pairs; thepositionis numbered automatically. - Check the result in the Preview tab under JSON-LD Preview, and after deployment test it with the Google Rich Results Test linked in the Tips tab.
Details on each schema type and its fields are in the manual under Structured Data (JSON-LD).
Example 4: Adding security headers and verification tags
You want to register a new domain with the webmaster services and set a few protective headers.
- Enable Verification Tags and enter the codes Google Search Console, Bing, Pinterest, Yandex, or Facebook give you. Each filled code produces exactly one
<meta>tag with the rightname. - Enable Security Headers. For a quick CSP, click one of the presets Strict, Moderate, or Loose — the matching policy string appears in the field and in the output.
- Heed the warning in the tool: a CSP via
<meta>is limited. Use it to experiment; in production the policy belongs in a real HTTP header (Apache/Nginx). See the manual under Security Headers. - Optionally, use the Permissions-Policy checkboxes to deny camera, microphone, geolocation, fullscreen, and payment if your page doesn't need them.
Example 5: Performance hints and mobile tags
A page loads fonts from a CDN and should look right as a PWA on the iPhone.
- Enable Performance & Resource Hints. Via Add preconnect, create a line for
https://fonts.gstatic.comand setcrossorigintoanonymous. With Add preload, preload a font: enter the URL,as=font,type=font/woff2,crossorigin=anonymous. - Add dns-prefetch for further third-party domains if needed. Each line can be removed again via the ✕.
- Enable Mobile & App. Turn on Theme Color via the Enable switch and pick a colour; add an apple-touch-icon (180×180 px PNG) and a short App Title (≤ 30 characters).
- If your page contains phone numbers the browser shouldn't auto-link, set format-detection: telephone to
no.
Example 6: Generate, then verify in the SEO Analyzer
The most honest test is practice: produce the markup, deploy it, check the real URL.
- Assemble your full head in the generator (Essential + Open Graph + Twitter + JSON-LD) and paste it into your page's
<head>. Deploy the change. - Open the SEO & GEO Analyzer, paste the same URL, and click Analyze.
- In the SEO Score breakdown, read whether checks like
Meta Description (70–160 chars),Open Graph Tags,OG Image, andTwitter / X Cardare nowpass— and in the GEO Score, whetherJSON-LD Present,Schema Variety, andAuthor / Organization Schemacount. - If something stays red, go back to the generator, add the missing field, and repeat the check.
That turns "looks good in the preview" into a proven, measured state. How to lift the GEO part on purpose is in the tips & tricks.
Going deeper: the manual for every field, the tips & tricks for strategy and pitfalls. You can try all of it directly in the tool.