|
1 | 1 | <!DOCTYPE html>
|
2 |
| -<html> |
| 2 | +<html prefix="og: http://ogp.me/ns#" lang="en" itemscope itemtype="http://schema.org/WebPage"> |
3 | 3 | <head>
|
4 | 4 | <meta charset="utf-8" />
|
5 | 5 | <title>Testing Playground</title>
|
| 6 | + <meta name="title" content="Testing Playground" /> |
| 7 | + <meta |
| 8 | + name="description" |
| 9 | + content="Simple and complete DOM testing playground that encourage good testing practices." |
| 10 | + /> |
| 11 | + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" /> |
6 | 12 | <link rel="stylesheet" href="styles/index.css" />
|
7 | 13 |
|
8 | 14 | <link rel="apple-touch-icon" sizes="57x57" href="../public/57-production.png" />
|
|
15 | 21 | <link rel="apple-touch-icon" sizes="152x152" href="../public/152-production.png" />
|
16 | 22 | <link rel="apple-touch-icon" sizes="180x180" href="../public/180-production.png" />
|
17 | 23 |
|
| 24 | + <link rel="icon" type="image/png" href="../public/310-production.png" /> |
18 | 25 | <link rel="icon" type="image/png" sizes="192x192" href="../public/192-production.png" />
|
19 | 26 | <link rel="icon" type="image/png" sizes="96x96" href="../public/96-production.png" />
|
20 | 27 | <link rel="icon" type="image/png" sizes="32x32" href="../public/48-production.png" />
|
|
33 | 40 | title="Testing Playground"
|
34 | 41 | />
|
35 | 42 |
|
36 |
| - <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /> |
37 | 43 | <meta name="theme-color" content="#ffffff" />
|
38 | 44 |
|
| 45 | + <meta name="keywords" content="testing playground, testing, best practice, dom, testing-library" /> |
| 46 | + <meta name="distribution" content="global" /> |
| 47 | + <meta name="robots" content="index,nofollow" /> |
| 48 | + <meta name="revisit-after" content="7 days" /> |
| 49 | + |
| 50 | + <meta name="language" content="en" /> |
| 51 | + <link rel="canonical" href="https://testing-playground.com" /> |
| 52 | + |
| 53 | + <!-- Schema.org --> |
| 54 | + <meta itemprop="name" content="Testing Playground" /> |
| 55 | + <meta |
| 56 | + itemprop="description" |
| 57 | + content="Simple and complete DOM testing playground that encourage good testing practices." |
| 58 | + /> |
| 59 | + <meta itemprop="image" content="../public/310-production.png" /> |
| 60 | + <meta property="image:alt" content="Testing Playground mascot Froggy" /> |
| 61 | + |
| 62 | + <!-- Facebook OpenGraph --> |
| 63 | + <meta property="og:url" content="https://testing-playground.com/" /> |
| 64 | + <meta property="og:type" content="website" /> |
| 65 | + <meta property="og:title" content="Testing Playground" /> |
| 66 | + <meta property="og:image" content="../public/site.jpg" /> |
| 67 | + <meta property="og:image:alt" content="Testing Playground" /> |
| 68 | + <meta property="og:image:width" content="1200" /> |
| 69 | + <meta property="og:image:height" content="628" /> |
| 70 | + <meta |
| 71 | + property="og:description" |
| 72 | + content="Simple and complete DOM testing playground that encourage good testing practices." |
| 73 | + /> |
| 74 | + <meta property="og:site_name" content="Testing Playground" /> |
| 75 | + <meta property="og:locale" content="en_US" /> |
| 76 | + |
| 77 | + <!-- Twitter OpenGraph --> |
| 78 | + <meta name="twitter:card" content="summary_large_image" /> |
| 79 | + <meta name="twitter:creator" content="@meijer_s" /> |
| 80 | + <meta name="twitter:url" content="https://testing-playground.com/" /> |
| 81 | + <meta name="twitter:title" content="Testing Playground" /> |
| 82 | + <meta |
| 83 | + name="twitter:description" |
| 84 | + content="Simple and complete DOM testing playground that encourage good testing practices." |
| 85 | + /> |
| 86 | + <meta name="twitter:image" content="../public/site.jpg" /> |
| 87 | + <meta name="twitter:image:alt" content="Testing Playground" /> |
| 88 | + |
| 89 | + <!-- Chrome Webstore |
| 90 | + <link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/APP_ID" /> |
| 91 | + --> |
| 92 | + |
39 | 93 | <!-- Global site tag (gtag.js) - Google Analytics -->
|
40 | 94 | <script async src="https://www.googletagmanager.com/gtag/js?id=UA-166958850-1"></script>
|
41 | 95 | <script>
|
|
0 commit comments