79 lines
No EOL
3.7 KiB
HTML
79 lines
No EOL
3.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<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">
|
|
<meta name="msapplication-navbutton-color" content="#4CAF50">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="#4CAF50">
|
|
|
|
<!-- Primary Meta Tags -->
|
|
<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? | 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? | 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>
|
|
<body>
|
|
<!-- main container -->
|
|
<div class="container">
|
|
<!-- title -->
|
|
<h1 class="title">Is My Internet Working?</h1>
|
|
<!-- status box -->
|
|
<div class="status-container">
|
|
<span id="status" class="status">Yes</span>
|
|
</div>
|
|
</div>
|
|
<!-- scripts -->
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |