<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Instagram Story Viewer ❤️ Insta stories Anonymously | Anon IG viewer</title>
  <link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
    body { background-color: #f8f9fa; min-height: 100vh; display: flex; flex-direction: column; align-items: center; padding: 60px 20px; }
    h1 { text-align: center; font-size: 2rem; font-weight: 700; color: #1a1a2e; max-width: 800px; margin-bottom: 40px; line-height: 1.3; }
    .form-card { background: #ffffff; border-radius: 12px; box-shadow: 0 2px 20px rgba(0,0,0,0.08); padding: 20px; width: 100%; max-width: 800px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
    .input-group { display: flex; flex: 1 1 400px; border: 1px solid #e2e5ec; border-radius: 8px; overflow: hidden; }
    .input-group input { flex: 1; border: none; padding: 14px 16px; font-size: 16px; outline: none; }
    .input-group .clip-btn { background: #fff; border: none; border-left: 1px solid #e2e5ec; padding: 0 16px; cursor: pointer; color: #495057; font-size: 18px; }
    .downbtn { background: linear-gradient(310deg, #7928ca, #ff0080); border: none; color: #fff; font-weight: 600; text-transform: capitalize; padding: 14px 40px; border-radius: 8px; cursor: pointer; font-size: 16px; flex: 0 0 auto; }
    .downbtn:hover { opacity: 0.92; }
    .supported { margin-top: 50px; width: 100%; max-width: 800px; }
    .supported p.label { text-align: center; color: #7928ca; font-weight: 700; margin-bottom: 16px; }
    .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); gap: 16px; text-align: center; }
    .grid .item img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
    .grid .item p { margin-top: 8px; font-size: 13px; color: #495057; }
    .redirect-note { margin-top: 18px; font-size: 12px; color: #adb5bd; }
  </style>
</head>
<body>

  <h1>Instagram Story Viewer ❤️ Insta stories Anonymously | Anon IG viewer</h1>

  <form class="form-card" id="viewerForm">
    <div class="input-group">
      <input type="text" id="link" placeholder="Enter username or link" />
      <button type="button" class="clip-btn" onclick="pasteClipboard()">📋</button>
    </div>
    <button type="submit" class="downbtn">View</button>
  </form>
  <p class="redirect-note">You'll be redirected to mollygram.com to view results.</p>

  <div class="supported">
    <p class="label">Supported Resources</p>
    <div class="grid">
      <div class="item"><img src="https://mollygram.com/components/storage/app/public/photos/1/reeels-menu.jpg"><p>Reels</p></div>
      <div class="item"><img src="https://mollygram.com/components/storage/app/public/photos/1/2021-08-10_193504.jpg"><p>Story</p></div>
      <div class="item"><img src="https://mollygram.com/components/storage/app/public/photos/1/2021-08-10_193724.jpg"><p>Highlights</p></div>
      <div class="item"><img src="https://mollygram.com/components/storage/app/public/photos/1/2021-08-10_193736.jpg"><p>Photo</p></div>
      <div class="item"><img src="https://mollygram.com/components/storage/app/public/photos/1/2021-08-10_193751.jpg"><p>Video</p></div>
      <div class="item"><img src="https://mollygram.com/components/storage/app/public/photos/1/2021-08-10_193831.jpg"><p>IGTV</p></div>
      <div class="item"><img src="https://mollygram.com/components/storage/app/public/photos/1/2021-08-10_193841.jpg"><p>Profile photo</p></div>
    </div>
  </div>

  <script>
    async function pasteClipboard() {
      try {
        const text = await navigator.clipboard.readText();
        if (text) document.getElementById('link').value = text.trim();
      } catch (err) { console.error('Clipboard denied'); }
    }

    document.getElementById('viewerForm').addEventListener('submit', (e) => {
      e.preventDefault();
      window.location.href = 'https://mollygram.com/';
    });
  </script>
</body>
</html>
Share.
Leave A Reply

Exit mobile version