DontClickThis/index.html
2025-05-28 22:35:13 -04:00

60 lines
No EOL
3.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Don't Click This | Chaotic Interactive Website</title>
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="https://cdn-icons-png.flaticon.com/512/11450/11450177.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://cdn-icons-png.flaticon.com/512/11450/11450177.png">
<link rel="apple-touch-icon" href="https://cdn-icons-png.flaticon.com/512/11450/11450177.png">
<!-- Theme Colors -->
<meta name="theme-color" content="#1a1a1a">
<meta name="msapplication-TileColor" content="#1a1a1a">
<meta name="msapplication-navbutton-color" content="#1a1a1a">
<meta name="apple-mobile-web-app-status-bar-style" content="#1a1a1a">
<!-- Primary Meta Tags -->
<meta name="title" content="Don't Click This | Chaotic Interactive Website">
<meta name="description" content="A fun and chaotic interactive website where each click progressively breaks the website further. Experience 15 different random effects that make the website increasingly chaotic!">
<meta name="keywords" content="interactive website, chaos effects, CSS animations, JavaScript effects, DOM manipulation, fun website, experimental website">
<meta name="author" content="Ronniie">
<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="Don't Click This | Chaotic Interactive Website">
<meta property="og:description" content="A fun and chaotic interactive website where each click progressively breaks the website further. Experience 15 different random effects that make the website increasingly chaotic!">
<meta property="og:image" content="https://cdn-icons-png.flaticon.com/512/11450/11450177.png">
<meta property="og:site_name" content="Don't Click This">
<!-- Twitter -->
<meta property="twitter:card" content="summary">
<meta property="twitter:title" content="Don't Click This | Chaotic Interactive Website">
<meta property="twitter:description" content="A fun and chaotic interactive website where each click progressively breaks the website further. Experience 15 different random effects that make the website increasingly chaotic!">
<meta property="twitter:image" content="https://cdn-icons-png.flaticon.com/512/11450/11450177.png">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<!-- styles -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Don't Click This</h1>
<p class="warning">I warned you...</p>
<button id="dangerButton">Don't Click Me!</button>
<p class="click-count">Clicks: <span id="clickCount">0</span></p>
</div>
<script src="script.js"></script>
</body>
</html>