Website editor instructions

How to upload your own links

  1. Open links.html in any text editor.
  2. Find the visible text Insert link here.
  3. Replace the matching href="#" value with the full article URL, including https://.
  4. Replace Insert link here with the article title, then update the short description below it.
  5. To add more links, copy one complete <article class="glass-card link-card"> block, paste it below the others, and update the number, URL, title, and description.
  6. Upload the edited links.html file to the same website folder as index.html and styles.css. If you edit styles.css, upload that file too.
<article class="glass-card link-card">
  <div class="link-card-meta">
    <span>04</span>
    <span>Category or source</span>
  </div>
  <h3>
    <a href="https://example.com/article-url" target="_blank" rel="noopener">
      Article title goes here
    </a>
  </h3>
  <p>Brief note or description goes here.</p>
  <div class="link-card-actions">
    <a class="button secondary" href="https://example.com/article-url" target="_blank" rel="noopener">
      Open link
    </a>
  </div>
</article>