My first post

Published: July 21, 2026

code <style>
        :root {
            --bg-color: #0d1117;
            --card-bg: #161b22;
            --accent-cyan: #38bdf8;
            --accent-green: #2dd4bf;
            --accent-purple: #a855f7;
            --accent-orange: #fb923c;
            --text-main: #f3f4f6;
            --text-sub: #9ca3af;
            --border-color: #30363d;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            line-height: 1.6;
            padding: 2rem 1rem;
            display: flex;
            justify-content: center;
        }

        .container {
            max-width: 900px;
            width: 100%;
        }

        /* Header Styling */
        header {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            margin-bottom: 2rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
        }

        .brand-badge {
            display: inline-block;
            background: rgba(56, 189, 248, 0.1);
            color: var(--accent-cyan);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            border: 1px solid rgba(56, 189, 248, 0.3);
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(to right, #38bdf8, #2dd4bf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .subtitle {
            font-size: 1.25rem;
            color: var(--text-sub);
            font-weight: 600;
        }

        /* Intro Section - Text in H2 height bold print */
        .intro-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-left: 5px solid var(--accent-cyan);
            border-radius: 12px;
            padding: 1.75rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        }

        .intro-text {
            font-size: 1.5rem; /* H2 equivalent height */
            font-weight: 700;  /* Bold print */
            color: #ffffff;
            line-height: 1.4;
        }

        /* Section Styling */
        .section-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1.75rem;
            margin-bottom: 2rem;
        }

        h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--accent-cyan);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section-desc {
            font-size: 1.35rem; /* H2 size bold print request */
            font-weight: 700;
            margin-bottom: 1.25rem;
            color: #e2e8f0;
        }

        /* Button Grid Layout */
        .button-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        /* Button Links Styling */
        .btn-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.9rem 1.25rem;
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border: 1px solid var(--accent-cyan);
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.25s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            text-align: center;
            word-break: break-word;
        }

        .btn-link:hover {
            background: var(--accent-cyan);
            color: #0f172a;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(56, 189, 248, 0.4);
            border-color: var(--accent-cyan);
        }

        .btn-purple {
            border-color: var(--accent-purple);
        }
        .btn-purple:hover {
            background: var(--accent-purple);
            color: #ffffff;
            box-shadow: 0 6px 15px rgba(168, 85, 247, 0.4);
        }

        .btn-green {
            border-color: var(--accent-green);
        }
        .btn-green:hover {
            background: var(--accent-green);
            color: #0f172a;
            box-shadow: 0 6px 15px rgba(45, 212, 191, 0.4);
        }

        .btn-orange {
            border-color: var(--accent-orange);
        }
        .btn-orange:hover {
            background: var(--accent-orange);
            color: #0f172a;
            box-shadow: 0 6px 15px rgba(251, 146, 60, 0.4);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 2rem 1rem;
            color: var(--text-sub);
            font-size: 1rem;
            font-weight: 600;
            border-top: 1px solid var(--border-color);
            margin-top: 2rem;
        }

        footer p {
            margin-bottom: 0.5rem;
        }

        .tag {
            color: var(--accent-cyan);
        }
    </style>
</head>
<body>

    <div class="container">
        <!-- Header -->
        <header>
            <span class="brand-badge">Coqui Web Cloud Computing</span>
            <h1>July 2026 Newsletter</h1>
            <p class="subtitle">Web Activity Update &amp; Bookmark Hubs</p>
        </header>

        <!-- Greeting -->
        <div class="intro-card">
            <p class="intro-text">
                Dear friends of Coqui Web Cloud Computing,<br>
                We are happy to share with you an update on our web activity this month!
            </p>
        </div>

        <!-- Section 1: Renewed Portals -->
        <div class="section-card">
            <h2> Renewed Portaportal Subscription</h2>
            <p class="section-desc">
                One of the first cloud bookmarking sites that we first used is <strong>portaportal.com</strong>, and we have renewed our subscription there and updated our portals!
            </p>
            <div class="button-grid">
                <a href="https://guest.portaportal.com/rboyd00979" target="_blank" class="btn-link btn-green">
                     Portaportal: rboyd00979
                </a>
                <a href="https://guest.portaportal.com/varii" target="_blank" class="btn-link btn-green">
                     Portaportal: varii
                </a>
            </div>
        </div>

        <!-- Section 2: Diigo Updates -->
        <div class="section-card">
            <h2> Diigo Cloud Library Updated</h2>
            <p class="section-desc">
                We have also updated our subscription at <strong>diigo.com</strong> and updated our site profile:
            </p>
            <div class="button-grid">
                <a href="https://www.diigo.com/profile/coquiwebpr" target="_blank" class="btn-link btn-purple">
                     Diigo: coquiwebpr Profile
                </a>
            </div>
        </div>

        <!-- Section 3: New Cloud Sites Under Testing -->
        <div class="section-card">
            <h2> New Cloud Sites Testing</h2>
            <p class="section-desc">
                Check out these exciting new cloud bookmarking and link-in-bio sites we are currently testing:
            </p>
            <div class="button-grid">
                <a href="https://onee.page/rboyd" target="_blank" class="btn-link btn-orange">
                     Onee.page / rboyd
                </a>
                <a href="https://own.page/rboyd" target="_blank" class="btn-link btn-orange">
                     Own.page / rboyd
                </a>
                <a href="https://beacons.ai/rboyd511" target="_blank" class="btn-link btn-orange">
                     Beacons.ai / rboyd511
                </a>
                <a href="https://rboyd.start.page/" target="_blank" class="btn-link btn-orange">
                    Start.page / rboyd
                </a>
            </div>
        </div>

        <!-- Section 4: Main Cloud Service Pages -->
        <div class="section-card">
            <h2>Main Cloud Service Pages</h2>
            <p class="section-desc">
                Finally, we continue to update our main cloud service pages (that many of you visit frequently) and list them here for your convenience:
            </p>
            <div class="button-grid">
                <a href="https://bookmarkos.com/f/Ba0y8lk4YKc" target="_blank" class="btn-link">
                    BookmarkOS Collection
                </a>
                <a href="https://www.bookmarkninja.com/share/mb1GI8zW" target="_blank" class="btn-link">
                     BookmarkNinja Hub
                </a>
                <a href="https://stacklist.com/collection/1421dcaf-f3df-46c8-9319-eb1385488de9" target="_blank" class="btn-link">
                    Stacklist Collection
                </a>
                <a href="https://padlet.com/rboyd4/team9-uc73sixvg7krf3gh" target="_blank" class="btn-link">
                     Padlet Team Board
                </a>
                <a href="https://booky.io/shared/403107" target="_blank" class="btn-link">
                     Booky.io Shared Hub
                </a>
                <a href="https://rboyd.raindrop.page/" target="_blank" class="btn-link">
                    Raindrop.io (rboyd)
                </a>
                <a href="https://rabpr.raindrop.page/" target="_blank" class="btn-link">
                    Raindrop.io (rabpr)
                </a>
            </div>
        </div>

        <!-- Footer -->
        <footer>
            <p><strong>Coqui Web Cloud Computing</strong>  July 2026 Edition</p>
            <p>Thank you for visiting our cloud bookmark portals!</p>
        </footer>
    </div>

</body></html>
 <style>
        :root {
            --bg-color: #0d1117;
            --card-bg: #161b22;
            --accent-cyan: #38bdf8;
            --accent-green: #2dd4bf;
            --accent-purple: #a855f7;
            --accent-orange: #fb923c;
            --text-main: #f3f4f6;
            --text-sub: #9ca3af;
            --border-color: #30363d;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            line-height: 1.6;
            padding: 2rem 1rem;
            display: flex;
            justify-content: center;
        }

        .container {
            max-width: 900px;
            width: 100%;
        }

        /* Header Styling */
        header {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            margin-bottom: 2rem;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
        }

        .brand-badge {
            display: inline-block;
            background: rgba(56, 189, 248, 0.1);
            color: var(--accent-cyan);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            border: 1px solid rgba(56, 189, 248, 0.3);
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(to right, #38bdf8, #2dd4bf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .subtitle {
            font-size: 1.25rem;
            color: var(--text-sub);
            font-weight: 600;
        }

        /* Intro Section - Text in H2 height bold print */
        .intro-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-left: 5px solid var(--accent-cyan);
            border-radius: 12px;
            padding: 1.75rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        }

        .intro-text {
            font-size: 1.5rem; /* H2 equivalent height */
            font-weight: 700;  /* Bold print */
            color: #ffffff;
            line-height: 1.4;
        }

        /* Section Styling */
        .section-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1.75rem;
            margin-bottom: 2rem;
        }

        h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--accent-cyan);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section-desc {
            font-size: 1.35rem; /* H2 size bold print request */
            font-weight: 700;
            margin-bottom: 1.25rem;
            color: #e2e8f0;
        }

        /* Button Grid Layout */
        .button-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        /* Button Links Styling */
        .btn-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.9rem 1.25rem;
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border: 1px solid var(--accent-cyan);
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.25s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            text-align: center;
            word-break: break-word;
        }

        .btn-link:hover {
            background: var(--accent-cyan);
            color: #0f172a;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(56, 189, 248, 0.4);
            border-color: var(--accent-cyan);
        }

        .btn-purple {
            border-color: var(--accent-purple);
        }
        .btn-purple:hover {
            background: var(--accent-purple);
            color: #ffffff;
            box-shadow: 0 6px 15px rgba(168, 85, 247, 0.4);
        }

        .btn-green {
            border-color: var(--accent-green);
        }
        .btn-green:hover {
            background: var(--accent-green);
            color: #0f172a;
            box-shadow: 0 6px 15px rgba(45, 212, 191, 0.4);
        }

        .btn-orange {
            border-color: var(--accent-orange);
        }
        .btn-orange:hover {
            background: var(--accent-orange);
            color: #0f172a;
            box-shadow: 0 6px 15px rgba(251, 146, 60, 0.4);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 2rem 1rem;
            color: var(--text-sub);
            font-size: 1rem;
            font-weight: 600;
            border-top: 1px solid var(--border-color);
            margin-top: 2rem;
        }

        footer p {
            margin-bottom: 0.5rem;
        }

        .tag {
            color: var(--accent-cyan);
        }
    </style>
</head>
<body>

    <div class="container">
        <!-- Header -->
        <header>
            <span class="brand-badge">Coqui Web Cloud Computing</span>
            <h1>July 2026 Newsletter</h1>
            <p class="subtitle">Web Activity Update &amp; Bookmark Hubs</p>
        </header>

        <!-- Greeting -->
        <div class="intro-card">
            <p class="intro-text">
                Dear friends of Coqui Web Cloud Computing,<br>
                We are happy to share with you an update on our web activity this month!
            </p>
        </div>

        <!-- Section 1: Renewed Portals -->
        <div class="section-card">
            <h2> Renewed Portaportal Subscription</h2>
            <p class="section-desc">
                One of the first cloud bookmarking sites that we first used is <strong>portaportal.com</strong>, and we have renewed our subscription there and updated our portals!
            </p>
            <div class="button-grid">
                <a href="https://guest.portaportal.com/rboyd00979" target="_blank" class="btn-link btn-green">
                     Portaportal: rboyd00979
                </a>
                <a href="https://guest.portaportal.com/varii" target="_blank" class="btn-link btn-green">
                     Portaportal: varii
                </a>
            </div>
        </div>

        <!-- Section 2: Diigo Updates -->
        <div class="section-card">
            <h2> Diigo Cloud Library Updated</h2>
            <p class="section-desc">
                We have also updated our subscription at <strong>diigo.com</strong> and updated our site profile:
            </p>
            <div class="button-grid">
                <a href="https://www.diigo.com/profile/coquiwebpr" target="_blank" class="btn-link btn-purple">
                     Diigo: coquiwebpr Profile
                </a>
            </div>
        </div>

        <!-- Section 3: New Cloud Sites Under Testing -->
        <div class="section-card">
            <h2> New Cloud Sites Testing</h2>
            <p class="section-desc">
                Check out these exciting new cloud bookmarking and link-in-bio sites we are currently testing:
            </p>
            <div class="button-grid">
                <a href="https://onee.page/rboyd" target="_blank" class="btn-link btn-orange">
                     Onee.page / rboyd
                </a>
                <a href="https://own.page/rboyd" target="_blank" class="btn-link btn-orange">
                     Own.page / rboyd
                </a>
                <a href="https://beacons.ai/rboyd511" target="_blank" class="btn-link btn-orange">
                     Beacons.ai / rboyd511
                </a>
                <a href="https://rboyd.start.page/" target="_blank" class="btn-link btn-orange">
                    Start.page / rboyd
                </a>
            </div>
        </div>

        <!-- Section 4: Main Cloud Service Pages -->
        <div class="section-card">
            <h2>Main Cloud Service Pages</h2>
            <p class="section-desc">
                Finally, we continue to update our main cloud service pages (that many of you visit frequently) and list them here for your convenience:
            </p>
            <div class="button-grid">
                <a href="https://bookmarkos.com/f/Ba0y8lk4YKc" target="_blank" class="btn-link">
                    BookmarkOS Collection
                </a>
                <a href="https://www.bookmarkninja.com/share/mb1GI8zW" target="_blank" class="btn-link">
                     BookmarkNinja Hub
                </a>
                <a href="https://stacklist.com/collection/1421dcaf-f3df-46c8-9319-eb1385488de9" target="_blank" class="btn-link">
                    Stacklist Collection
                </a>
                <a href="https://padlet.com/rboyd4/team9-uc73sixvg7krf3gh" target="_blank" class="btn-link">
                     Padlet Team Board
                </a>
                <a href="https://booky.io/shared/403107" target="_blank" class="btn-link">
                     Booky.io Shared Hub
                </a>
                <a href="https://rboyd.raindrop.page/" target="_blank" class="btn-link">
                    Raindrop.io (rboyd)
                </a>
                <a href="https://rabpr.raindrop.page/" target="_blank" class="btn-link">
                    Raindrop.io (rabpr)
                </a>
            </div>
        </div>

        <!-- Footer -->
        <footer>
            <p><strong>Coqui Web Cloud Computing</strong>  July 2026 Edition</p>
            <p>Thank you for visiting our cloud bookmark portals!</p>
        </footer>
    </div>

</body></html>code

← Back to Blog