Tri-Cities Homelessness & Housing Task Group
body { font-family: ‘Inter’, Arial, sans-serif; background: #f4f8fb; margin: 0; }
nav { background: #1756a9; color: #fff; padding: 1em; text-align: center; }
nav a { color: #fff; margin: 0 1em; text-decoration: none; font-weight: bold; }
.banner { text-align: center; border-radius: 0 0 2em 2em; padding: 0; }
.banner img { width: 100%; max-width: 100%; display: block; border-radius: 0 0 2em 2em; margin: 0 auto; }
.slideshow-container {
max-width: 900px;
margin: 3em auto 2em auto;
border-radius: 1em;
overflow: hidden;
background: #fff;
position: relative;
box-shadow: 0 2px 16px rgba(23,86,169,0.10);
}
.slideshow-image {
width: 100%;
height: 350px;
object-fit: cover;
display: none;
transition: opacity 0.8s;
}
.slideshow-image.active {
display: block;
opacity: 1;
}
.slideshow-caption {
position: absolute;
bottom: 0;
background: rgba(23,86,169,0.35);
color: #fff;
width: 100%;
padding: 1em;
font-size: 1.1em;
letter-spacing: 0.02em;
text-shadow: 1px 1px 4px #1756a9;
}
.intro-section { max-width: 700px; margin: 1.5em auto; background: #fff; padding: 2em; border-radius: 1em; }
@media (max-width: 900px) {
.slideshow-container { margin: 2em auto; max-width: 100%; }
.slideshow-image { height: 220px; }
}
@media (max-width: 700px) {
.banner img { border-radius: 0 0 1em 1em; }
.intro-section { padding: 1em; }
}
Home
About Us
Services
Contact
Welcome to the Tri-Cities Homelessness & Housing Task Group
The Tri-Cities Homelessness & Housing Task Group is a Community Homeless Table representing the Tri-Cities community of Coquitlam, Port Moody, and Port Coquitlam, British Columbia, Canada. Our members include non-profit and government agencies, local government, community groups, businesses, politicians, and citizens concerned about homelessness and housing affordability in the Tri-Cities.
Please look through our website – you can see our mission, goals, and accomplishments as well as related reports and useful links. You can find out the services that are available to homeless persons in the Tri-Cities and how you can help. If you know someone who is homeless or facing homelessness and needs help, see the Street Survival Guide – April 2024
On this website, you will find many stories about people in the Tri-Cities who are – or were – homeless.
const images = document.querySelectorAll(‘.slideshow-image’);
const captions = [
“Helping hands in Port Coquitlam”,
“Community support in Coquitlam camp”,
“A mother bringing light at the shelter”,
“Finding refuge under stairs”,
“Resilience in Port Coquitlam park”,
“Camp outside MLA’s office: speaking out”
];
let idx = 0;
const captionEl = document.getElementById(‘slide-caption’);
setInterval(()=>{
images[idx].classList.remove(‘active’);
idx = (idx + 1) % images.length;
images[idx].classList.add(‘active’);
captionEl.textContent = captions[idx];
}, 5000);





