61 lines
No EOL
2.9 KiB
HTML
61 lines
No EOL
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>What's My Vibe? | Vibe Checker</title>
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/png" sizes="32x32" href="https://upload.wikimedia.org/wikipedia/commons/6/69/SMirC-smile.svg">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="https://upload.wikimedia.org/wikipedia/commons/6/69/SMirC-smile.svg">
|
|
<link rel="apple-touch-icon" href="https://upload.wikimedia.org/wikipedia/commons/6/69/SMirC-smile.svg">
|
|
|
|
<!-- Theme Colors -->
|
|
<meta name="theme-color" content="#23a6d5">
|
|
<meta name="msapplication-navbutton-color" content="#23a6d5">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="#23a6d5">
|
|
|
|
<!-- Primary Meta Tags -->
|
|
<meta name="title" content="What's My Vibe? | Vibe Checker">
|
|
<meta name="description" content="Check your current vibe with our fun and interactive vibe checker. Get instant vibe readings and discover your mood!">
|
|
<meta name="keywords" content="vibe checker, mood checker, vibe reading, mood reading, vibe test">
|
|
<meta name="author" content="WhatsMyVibe">
|
|
<meta name="robots" content="index, follow">
|
|
<meta name="language" content="English">
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:title" content="What's My Vibe? | Vibe Checker">
|
|
<meta property="og:description" content="Check your current vibe with our fun and interactive vibe checker. Get instant vibe readings and discover your mood!">
|
|
<meta property="og:image" content="https://upload.wikimedia.org/wikipedia/commons/6/69/SMirC-smile.svg">
|
|
<meta property="og:image:width" content="96">
|
|
<meta property="og:image:height" content="96">
|
|
<meta property="og:site_name" content="What's My Vibe?">
|
|
|
|
<!-- Twitter -->
|
|
<meta property="twitter:card" content="summary">
|
|
<meta property="twitter:title" content="What's My Vibe? | Vibe Checker">
|
|
<meta property="twitter:description" content="Check your current vibe with our fun and interactive vibe checker. Get instant vibe readings and discover your mood!">
|
|
<meta property="twitter:image" content="https://upload.wikimedia.org/wikipedia/commons/6/69/SMirC-smile.svg">
|
|
|
|
<!-- styles -->
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<!-- particles container -->
|
|
<div id="particles-js"></div>
|
|
|
|
<div class="container">
|
|
<h1 class="title">What's My Vibe?</h1>
|
|
<div class="vibe-container">
|
|
<span id="vibe" class="vibe">Your Vibe Awaits</span>
|
|
</div>
|
|
|
|
<button id="checkButton" class="check-button">Read My Vibe</button>
|
|
</div>
|
|
|
|
<!-- scripts -->
|
|
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |