Logo
  • Home
  • About
  • Contact

© 2026 KWolf Design

LinkedIn
Katherine Wolf
/UX & Web Design
UX & Web Design
/Website Design & Development —ICAP Website
Website Design & Development —ICAP Website
Website Design & Development —ICAP Website
Website Design & Development —ICAP Website

Website Design & Development —ICAP Website

image

Project Directions: Redesign and update a webpage in need of a new look or create a new webpage using HTML, CSS, and JavaScript. Client: Inter-Congregational Addictions Program (ICAP)

Previous website:

image

New website: Scroll down to view the other pages

Hand-Coded:

The website was entirely hand-coded using HTML, CSS, and JavaScript.

<!DOCTYPE html>
<html>
  <head>
    <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=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Outfit:wght@100..900&display=swap"
      rel="stylesheet"
    />
    <title>ICAP Today</title>
    <link rel="stylesheet" href="style.css" />
  </head>
  <nav>
    <ul>
      <li>
        <a id="logo" href="home.html"
          ><img src="images/ICAP logo white.png"
        /></a>
      </li>
      <li><a id="home" href="home.html"> Home </a></li>
      <li><a id="about" href="about_us.html"> About Us </a></li>

      <li><a id="memb" href="membership.html">Membership </a></li>

      <li>
        <a id="more" href="more_about_addiction.html">More About Addiction </a>
      </li>

      <li><a id="retreats" href="retreats.html">Retreats </a></li>

      <li><a id="contact" href="contact_us.html">Contact Us </a></li>
    </ul>
  </nav>
  <header>
    <div class="opening">
      <img
        src="images/ICAP LOGO w tagline.png"
        alt="blue half circle around the letters icap with tagline"
      />
      <p class="opening">
        The ICAP (Inter-Congregational Addictions Program) is a network of women
        in consecrated life who are recovering from addictions in 12-Step
        programs. Our purpose is to enhance and strengthen recovery from
        addictions through connection, access and fellowship with other
        sisters/women religious.
      </p>
    </div>
  </header>
  <body>
    <h1>Walking and Working with Sisters to Initiate and Sustain Recovery</h1>

    <p>
      ICAP sees addiction as a complex health/medical/psychological/social
      condition that involves repetitive behavior related to substances and/or
     activities in which a person feels compelled to engage in, despite adverse
     consequences for the individual and others in her life. By linking sisters
      based upon the common good of their identity as human beings who have an
      addiction, ICAP demonstrates that one can be a religious sister and an
      “addict” of one kind or another.
    </p>
    <p><br /></p>
    <p></p>
    <p>
      Navigating recovery is challenging for everyone, regardless of their path
      in life. Women in consecrated life face unique obstacles of community
      life, leadership or ministry expectations, and stigma surrounding
      addiction and/or mental illness. Listening and sharing with other
      sisters/women religious in recovery offers an additional support to
      working a 12-Step program of recovery.
    </p>

    <h1>Education and Intervention</h1>

    <p>
      If you are in leadership and are interested in learning more about
      addiction recovery, ICAP has members who are certified in addictions
      treatment and can help plan and implement education for religious
      communities. Additionally, if there is concern of a sister in active
      addiction, these sisters are trained to plan and implement interventions.
    </p>

    <div class="testimonial">
      <p>
        “Admitting to myself that I didn’t just have a problem, I had an
        addiction was one of the hardest things I have ever done. The shame and
        stigma I felt as I started my journey of recovery was crushing. Being
        able to hear other women religious share their stories and the years of
        sobriety helped me to overcome this shame and learn to love myself as
        God loves me.” <em>ICAP Member</em>
      </p>
    </div>

    <div></div>
  </body>
  <footer>
    <div>
      <img src="images/ICAP LOGO wo tagline.png" alt="ICAP logo" />
      <p>&copy;2026 ICAP</p>
    </div>
  </footer>
</html>