Added Favicon and SEO stuff
This commit is contained in:
parent
fc1391fef3
commit
042202c913
1 changed files with 39 additions and 7 deletions
46
index.html
46
index.html
|
@ -3,7 +3,12 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Is My Internet Working?</title>
|
||||
<title>Is My Internet Working? | Simple Internet Connection Checker</title>
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="https://img.icons8.com/ios7/32/40C057/ok.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="https://img.icons8.com/ios7/16/40C057/ok.png">
|
||||
<link rel="apple-touch-icon" href="https://img.icons8.com/ios7/180/40C057/ok.png">
|
||||
|
||||
<!-- Theme Colors -->
|
||||
<meta name="theme-color" content="#4CAF50">
|
||||
|
@ -11,23 +16,50 @@
|
|||
<meta name="apple-mobile-web-app-status-bar-style" content="#4CAF50">
|
||||
|
||||
<!-- Primary Meta Tags -->
|
||||
<meta name="title" content="Is My Internet Working?">
|
||||
<meta name="description" content="A simple tool to check if your internet connection is working. No fancy stuff, just a yes or no.">
|
||||
<meta name="title" content="Is My Internet Working? | Simple Internet Connection Checker">
|
||||
<meta name="description" content="A simple tool to check if your internet connection is working. No fancy stuff, just a yes or no. Free, instant, and reliable internet connection checker.">
|
||||
<meta name="keywords" content="internet connection checker, is my internet working, internet status, connection test, online status checker, internet diagnostic tool">
|
||||
<meta name="author" content="IsMyInternetWorking">
|
||||
<meta name="robots" content="index, follow">
|
||||
<meta name="language" content="English">
|
||||
<meta name="revisit-after" content="7 days">
|
||||
|
||||
<!-- Open Graph / Facebook -->
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://ismyinternetworking.com/">
|
||||
<meta property="og:title" content="Is My Internet Working?">
|
||||
<meta property="og:description" content="A simple tool to check if your internet connection is working. No fancy stuff, just a yes or no.">
|
||||
<meta property="og:title" content="Is My Internet Working? | Simple Internet Connection Checker">
|
||||
<meta property="og:description" content="A simple tool to check if your internet connection is working. No fancy stuff, just a yes or no. Free, instant, and reliable internet connection checker.">
|
||||
<meta property="og:image" content="https://img.icons8.com/ios7/512/40C057/ok.png">
|
||||
<meta property="og:site_name" content="Is My Internet Working?">
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta property="twitter:url" content="https://ismyinternetworking.com/">
|
||||
<meta property="twitter:title" content="Is My Internet Working?">
|
||||
<meta property="twitter:description" content="A simple tool to check if your internet connection is working. No fancy stuff, just a yes or no.">
|
||||
<meta property="twitter:title" content="Is My Internet Working? | Simple Internet Connection Checker">
|
||||
<meta property="twitter:description" content="A simple tool to check if your internet connection is working. No fancy stuff, just a yes or no. Free, instant, and reliable internet connection checker.">
|
||||
<meta property="twitter:image" content="https://img.icons8.com/ios7/512/40C057/ok.png">
|
||||
|
||||
<!-- Canonical URL -->
|
||||
<link rel="canonical" href="https://ismyinternetworking.com/">
|
||||
|
||||
<!-- Structured Data -->
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "WebApplication",
|
||||
"name": "Is My Internet Working?",
|
||||
"description": "A simple tool to check if your internet connection is working. No fancy stuff, just a yes or no.",
|
||||
"url": "https://ismyinternetworking.com/",
|
||||
"applicationCategory": "UtilityApplication",
|
||||
"operatingSystem": "Any",
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "USD"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- styles -->
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue