CINXE.COM

Home

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Load menu tags for CMS menu --> <!-- Favicon Icon --> <link rel="icon" type="image/png" href="/static/main/images/favicon.png"> <!-- Set Title for the Home Page --> <title>Home</title> <!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet"> <!-- HTMX Script --> <script src="https://unpkg.com/htmx.org@1.9.2"></script> <!-- Font Awesome --> <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet"> <style> /* General Styling */ body { font-family: 'Roboto', sans-serif; margin: 0; padding: 0; box-sizing: border-box; display: flex; flex-direction: column; min-height: 100vh; } .content { flex: 1; } .footer { background-color: #343a40; padding: 40px 0; text-align: center; border-top: 1px solid #dee2e6; color: white; } .footer p, .footer h5 { color: white; } /* Navbar Styling */ .navbar-brand img { height: 40px; margin-right: 10px; } .navbar { background-color: #343a40; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .navbar-nav .nav-link { font-weight: 500; padding: 0 15px; text-transform: uppercase; color: rgba(255, 255, 255, 0.8); } .navbar-nav .nav-link:hover { color: #ffffff; } /* Separator Styling */ .navbar-nav .separator { display: inline-block; color: rgba(255, 255, 255, 0.6); padding: 0 10px; font-size: 20px; line-height: 1; } .navbar-nav .btn-primary { background-color: #007bff; border-color: #007bff; } .navbar-nav .btn-primary:hover { background-color: #0056b3; } /* Footer Styling */ .footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; } .footer .col-md-3 { margin-bottom: 20px; } .footer .badge { font-size: 12px; padding: 5px 10px; } .footer .list-unstyled img { width: 100%; height: auto; margin-bottom: 10px; border-radius: 8px; } .footer-bottom { background-color: #212529; color: #ccc; padding: 10px 0; } .footer-bottom p { margin: 0; font-size: 14px; } /* Media Queries for Responsiveness */ @media (max-width: 768px) { .footer .container { flex-direction: column; text-align: left; } } </style> </head> <body> <!-- Include Navbar --> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Load menu tags for CMS menu --> <!-- Favicon Icon --> <link rel="icon" type="image/png" href="/static/main/images/favicon.png"> <!-- Set Title for the Home Page --> <title>Internet Society Trinidad and Tobago Chapter</title> <!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet"> <!-- HTMX Script --> <script src="https://unpkg.com/htmx.org@1.9.2"></script> <!-- Font Awesome --> <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet"> <style> /* General Styling */ body { font-family: 'Roboto', sans-serif; margin: 0; padding: 0; box-sizing: border-box; display: flex; flex-direction: column; min-height: 100vh; } .content { flex: 1; } .footer { background-color: #343a40; padding: 40px 0; text-align: center; border-top: 1px solid #dee2e6; color: white; } .footer p, .footer h5 { color: white; } /* Navbar Styling */ .navbar-brand img { max-height: 60px; /* Limit the max height */ height: auto; /* Allow auto-scaling */ width: auto; /* Maintain aspect ratio */ margin-right: 10px; } .navbar { background-color: #343a40; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .navbar-nav .nav-link { font-weight: 500; padding: 0 15px; text-transform: uppercase; color: rgba(255, 255, 255, 0.8); } .navbar-nav .nav-link:hover { color: #ffffff; } /* Separator Styling */ .navbar-nav .separator { display: inline-block; color: rgba(255, 255, 255, 0.6); padding: 0 10px; font-size: 20px; line-height: 1; } .navbar-nav .btn-primary { background-color: #007bff; border-color: #007bff; } .navbar-nav .btn-primary:hover { background-color: #0056b3; } /* Footer Styling */ .footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; } .footer .col-md-3 { margin-bottom: 20px; } /* Force white color for the dynamically generated menu items */ .navbar-nav .nav-link { color: #ffffff !important; /* Force white */ } .navbar-nav .nav-link:hover { color: #ffffff !important; /* Force white on hover */ } .footer .badge { font-size: 12px; padding: 5px 10px; } .footer .list-unstyled img { width: 100%; height: auto; margin-bottom: 10px; border-radius: 8px; } .footer-bottom { background-color: #212529; color: #ccc; padding: 10px 0; } .footer-bottom p { margin: 0; font-size: 14px; } /* Media Queries for Responsiveness */ @media (max-width: 768px) { .footer .container { flex-direction: column; text-align: left; } } </style> </head> <!-- Combined Navigation Menu --> <nav class="navbar navbar-expand-lg navbar-dark bg-dark py-3"> <div class="container"> <a class="navbar-brand d-flex align-items-center" href="/"> <img src="/static/main/images/logo.png" alt="Logo"> </a> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNav"> <ul class="navbar-nav ms-auto align-items-center"> <!-- Your Hardcoded Menu --> <li class="nav-item"> <a class="nav-link" href="/">Home</a> </li> <li class="nav-item separator">|</li> <li class="nav-item"> <a class="nav-link" href="/about/">About Us</a> </li> <li class="nav-item separator">|</li> <li class="nav-item"> <a class="nav-link" href="/events/">Events</a> </li> <li class="nav-item separator">|</li> <li class="nav-item"> <a class="nav-link" href="/contact/">Contact</a> </li> <li class="nav-item separator">|</li> <li class="nav-item"> <a class="nav-link btn btn-primary text-light" href="/join/">Join Now</a> </li> <li class="nav-item separator">|</li> <li class="nav-item"> <!-- Dynamic CMS-Generated Menu --> <a class="nav-link btn btn-primary text-light" href="/join/"> <li class="child selected"> <a href="/">Special Event</a> </li> </a> </li> </ul> </div> </div> </nav> <div class="container mt-5 content" id="content"> <!-- Google Fonts and Font Awesome --> <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> <style> /* General Styling */ body { font-family: 'Poppins', sans-serif; } /* Section Styling */ .section-background { background-color: #f8f9fa; border-radius: 8px; padding: 15px; margin-bottom: 20px; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); } /* Info Section */ .info-section { display: flex; justify-content: space-between; text-align: center; padding: 40px 0; background-color: #f5f7fa; border-radius: 8px; box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05); flex-wrap: wrap; /* Allow wrapping */ } /* Individual Info Boxes */ .info-box { flex: 1; margin: 10px; /* Added margin for spacing */ background-color: #ffffff; border-radius: 8px; padding: 20px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05); } .info-box:hover { transform: translateY(-5px); box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1); } .info-icon { font-size: 48px; color: #007bff; margin-bottom: 10px; } .info-title { font-size: 24px; font-weight: 600; margin-top: 10px; color: #333; } .info-text { font-size: 16px; color: #666; margin-top: 10px; } /* Icon Section */ .icon-section { display: flex; justify-content: space-around; text-align: center; padding: 40px 0; background-color: #ffffff; border-radius: 8px; box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05); margin-bottom: 40px; flex-wrap: wrap; } .icon-box { text-align: center; padding: 20px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .icon-box:hover { transform: translateY(-5px); box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1); } .icon { font-size: 48px; color: #007bff; } .icon-title { font-size: 18px; font-weight: 600; margin-top: 10px; color: #333; } .carousel-indicators { list-style-type: none; /* Remove the default list style */ } .carousel-inner img { width: 100%; height: 75vh; /* This will make the height 50% of the viewport */ object-fit: cover; /* Ensures the image is cropped to fit */ } .container-fluid.section-background.mb-4 { margin-top: 0; /* Remove or reduce margin */ padding-top: 0; /* Remove or reduce padding */ } /* Styling for the Recent Events cards */ .card { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; border: none; } .card:hover { transform: translateY(-10px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); } /* Image styling for modern layout */ .card-img-top { border-top-left-radius: 20px; border-top-right-radius: 20px; object-fit: cover; height: 200px; } /* Card body styling */ .card-body { padding: 15px; /* Slightly less padding for a cleaner look */ } .card-title { font-size: 1.25rem; /* Reduced title size */ font-weight: 500; /* Lighter font-weight for a more modern feel */ color: #333; margin-bottom: 8px; /* Adjusted spacing */ } .card-text { font-size: 0.95rem; /* Reduced text size for balance */ color: #666; line-height: 1.4; /* Adjusted line height for compact readability */ margin-bottom: 15px; /* Add spacing between text and button */ } .card .btn { background-color: #007bff; border-radius: 50px; padding: 8px 16px; /* Smaller button for a more balanced layout */ font-size: 0.9rem; /* Reduced button text size */ transition: background-color 0.3s ease; } .card .btn:hover { background-color: #0056b3; } /* Media Queries for Responsiveness */ @media (max-width: 768px) { .info-section { flex-direction: column; /* Stack the items vertically */ text-align: center; } .icon-section { flex-direction: column; /* Stack the icons vertically */ } .info-box, .icon-box { width: 100%; /* Full width for smaller screens */ margin-bottom: 20px; /* Add spacing between items */ } .info-text { font-size: 14px; /* Smaller text for mobile */ } .info-icon { font-size: 36px; /* Smaller icons for mobile */ } } </style> <div class="container-fluid section-background mb-4"> <!-- <h2 class="text-center">Featured</h2> --> <div id="carouselExampleIndicators" class="carousel slide" data-bs-ride="carousel" data-bs-interval="3000"> <ol class="carousel-indicators"> <li class="carousel-indicator active" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0"></li> <li class="carousel-indicator " data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1"></li> </ol> <div class="carousel-inner"> <div class="carousel-item active"> <img src="/media/carousel_images/pos1-600x400.jpg" class="d-block w-100 img-fluid custom-carousel-image" alt="INTERNET SOCIETY TRINIDAD AND TOBAGO"> <div class="carousel-caption"> <h5>INTERNET SOCIETY TRINIDAD AND TOBAGO</h5> <p>The Internet Society Trinidad and Tobago is Trinidad and Tobago (ISOCTT) is the Trinbagonian branch of the Internet Society of Trinidad and Tobago</p> </div> </div> <div class="carousel-item "> <img src="/media/carousel_images/61205433_10156343015636570_906622142546706432_n-600x400_u6QOyG4.jpg" class="d-block w-100 img-fluid custom-carousel-image" alt="ISOC TT CHAPTER"> <div class="carousel-caption"> <h5>ISOC TT CHAPTER</h5> <p>ISOCTT together with our global community, we extend the Internet’s reach and protect its long-term well-being.</p> </div> </div> </div> <a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-bs-slide="prev"> <span class="carousel-control-prev-icon" aria-hidden="true"></span> <span class="visually-hidden">Previous</span> </a> <a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-bs-slide="next"> <span class="carousel-control-next-icon" aria-hidden="true"></span> <span class="visually-hidden">Next</span> </a> </div> </div> <!-- Modernized Info Section with Icons --> <div class="container-fluid section-background mb-4"> <div class="info-section"> <div class="info-box"> <i class="fas fa-lightbulb info-icon"></i> <div class="info-title">Opportunities</div> <div class="info-text"> The Internet Society encourages innovation and fresh thinking. We provide grants and awards to relevant initiatives. </div> <!-- <a href="#" class="info-button">Learn More</a> --> </div> <div class="info-box"> <i class="fas fa-globe info-icon"></i> <div class="info-title">What We Do</div> <div class="info-text"> ISOC promotes the open development, evolution, and use of the Internet for the benefit of all people. </div> <!-- <a href="#" class="info-button">Learn More</a> --> </div> <div class="info-box"> <i class="fas fa-users info-icon"></i> <div class="info-title">Get Involved</div> <div class="info-text"> Membership is open and free, with nominal charges to join local chapters. </div> <!-- <a href="#" class="info-button">Learn More</a> --> </div> </div> <!-- Icon Section --> <div class="icon-section"> <div class="icon-box"> <i class="fas fa-project-diagram icon"></i> <div class="icon-title">We Give Programs</div> </div> <div class="icon-box"> <i class="fas fa-calendar-alt icon"></i> <div class="icon-title">We Host Events</div> </div> <div class="icon-box"> <i class="fas fa-user-friends icon"></i> <div class="icon-title">We Recruit Members</div> </div> <div class="icon-box"> <i class="fas fa-trophy icon"></i> <div class="icon-title">We Champion Freedom</div> </div> </div> </div> <!-- Recent Events Section --> <div class="container-fluid section-background mb-4"> <h2 class="text-center">Recent Events</h2> <div class="row"> <div class="col-md-4 mb-4"> <div class="card h-100"> <img src="/media/blog_images/IMG_0080_Large.jpg" alt="2024 Executive Membership F2F Event" class="card-img-top img-fluid" style="height: 150px; object-fit: cover;"> <div class="card-body"> <h5 class="card-title">2024 Executive Membership F2F Event</h5> <p class="card-text"><p>The Executive would love to thank all our members who came out to share their ideas, suggestions and just to …</p> <p class="card-text"><small class="text-muted">Posted on: Nov. 14, 2024, 6 p.m.</small></p> <a class="btn btn-primary" href="/blog_post/21/">Read More</a> </div> </div> </div> <div class="col-md-4 mb-4"> <div class="card h-100"> <img src="/media/blog_images/6201a7acb6323.image.jpg" alt="New Beginnings - Marac Community Network" class="card-img-top img-fluid" style="height: 150px; object-fit: cover;"> <div class="card-body"> <h5 class="card-title">New Beginnings - Marac Community Network</h5> <p class="card-text"><p style="text-align:justify">During the covid-19 pandemic the ISOC-TT chapter along with our partners through our various computer refurbishment initatives recognized, that …</p> <p class="card-text"><small class="text-muted">Posted on: Dec. 15, 2023, midnight</small></p> <a class="btn btn-primary" href="/blog_post/20/">Read More</a> </div> </div> </div> <div class="col-md-4 mb-4"> <div class="card h-100"> <img src="/media/blog_images/WhatsApp-Image-2021-11-15-at-20.55.06-600x388.jpeg" alt="Webinar Series: “Conversations with…Dr Keegan Baggan , NWRHA, and the PRO of the T&amp;TMA”" class="card-img-top img-fluid" style="height: 150px; object-fit: cover;"> <div class="card-body"> <h5 class="card-title">Webinar Series: “Conversations with…Dr Keegan Baggan , NWRHA, and the PRO of the T&amp;TMA”</h5> <p class="card-text"><h3><strong>The ISOC Trinidad and Tobago Chapter presents:</strong><br /> Webinar Series: &ldquo;Conversations with&hellip;Dr Keegan Baggan , NWRHA, and the PRO of …</p> <p class="card-text"><small class="text-muted">Posted on: Oct. 15, 2021, 7:54 a.m.</small></p> <a class="btn btn-primary" href="/blog_post/2/">Read More</a> </div> </div> </div> <div class="col-md-4 mb-4"> <div class="card h-100"> <img src="/media/blog_images/WhatsApp-Image-2021-11-15-at-20.54.55-600x388.jpeg" alt="Webinar Series: “Conversations with…Shernon Osepa , Director, Caribbean Affairs and Development of the Internet Society”" class="card-img-top img-fluid" style="height: 150px; object-fit: cover;"> <div class="card-body"> <h5 class="card-title">Webinar Series: “Conversations with…Shernon Osepa , Director, Caribbean Affairs and Development of the Internet Society”</h5> <p class="card-text"><h3><strong>The ISOC Trinidad and Tobago Chapter presents:</strong><br /> Webinar Series: &ldquo;Conversations with&hellip;Shernon Osepa , Director, Caribbean Affairs and Development of …</p> <p class="card-text"><small class="text-muted">Posted on: Sept. 14, 2021, 7:58 a.m.</small></p> <a class="btn btn-primary" href="/blog_post/3/">Read More</a> </div> </div> </div> <div class="col-md-4 mb-4"> <div class="card h-100"> <img src="/media/blog_images/WhatsApp-Image-2021-11-15-at-20.55.19-600x400.jpeg" alt="Webinar Series: “Conversations with…John Outridge , CEO of the T&amp;T International Financial Centre”" class="card-img-top img-fluid" style="height: 150px; object-fit: cover;"> <div class="card-body"> <h5 class="card-title">Webinar Series: “Conversations with…John Outridge , CEO of the T&amp;T International Financial Centre”</h5> <p class="card-text"><h3><strong>The ISOC Trinidad and Tobago Chapter presents:</strong><br /> Webinar Series: &ldquo;Conversations with&hellip;John Outridge , CEO of the T&amp;T International Financial …</p> <p class="card-text"><small class="text-muted">Posted on: Aug. 5, 2021, 7:14 a.m.</small></p> <a class="btn btn-primary" href="/blog_post/1/">Read More</a> </div> </div> </div> <div class="col-md-4 mb-4"> <div class="card h-100"> <img src="/media/blog_images/WhatsApp-Image-2021-11-15-at-20.54.34-600x400.jpeg" alt="Webinar Series: “Conversations with…Rishi Maharaj, Executive Director of EquiGov Institute”" class="card-img-top img-fluid" style="height: 150px; object-fit: cover;"> <div class="card-body"> <h5 class="card-title">Webinar Series: “Conversations with…Rishi Maharaj, Executive Director of EquiGov Institute”</h5> <p class="card-text"><h3><strong>The ISOC Trinidad and Tobago Chapter presents:</strong><br /> Webinar Series: &ldquo;Conversations with&hellip;Rishi Maharaj, Executive Director of EquiGov Institute&rdquo;<br /> Date …</p> <p class="card-text"><small class="text-muted">Posted on: June 10, 2021, 7:58 a.m.</small></p> <a class="btn btn-primary" href="/blog_post/5/">Read More</a> </div> </div> </div> </div> </div> </div> <!-- Include Footer --> <footer class="footer"> <div class="container py-5"> <div class="row d-flex align-items-start text-center text-md-start"> <!-- About Section --> <div class="col-md-4 mb-4 d-flex flex-column justify-content-start"> <div class="footer-section"> <img src="/static/main/images/logo.png" alt="Logo" class="img-fluid mb-3"> <h5 class="footer-title">Internet Society Trinidad and Tobago Chapter</h5> <p class="footer-text"> The Chapter brings together members of the Internet Society to advance and promote the general purpose and guiding principles of ISOC by serving the interests of the global Internet community through a local presence. </p> </div> </div> <!-- Popular Tags Section --> <div class="col-md-4"> <h5>Popular Tags</h5> <div> <a href="/tags/events/" class="btn btn-primary">events</a> <a href="/tags/webinars/" class="btn btn-primary">webinars</a> <a href="/tags/webinar/" class="btn btn-primary">webinar</a> </div> </div> <!-- Contact Us Section --> <div class="col-md-4 mb-4 d-flex flex-column justify-content-start"> <div class="footer-section"> <h5 class="footer-title">Contact Us</h5> <ul class="list-unstyled"> <li class="footer-text mb-2"><i class="fas fa-map-marker-alt me-2"></i>#22 Sackville Street Port of Spain</li> <li class="footer-text mb-2"><i class="fas fa-envelope me-2"></i>contact@isoc.tt</li> <li class="footer-text"><i class="fas fa-phone me-2"></i>+1-703-439-2120</li> </ul> </div> </div> </div> </div> </footer> <!-- Footer Bottom Section --> <div class="footer-bottom bg-dark text-light text-center py-3"> <p class="mb-0">&copy; 2024 Internet Society Trinidad and Tobago Chapter. All rights reserved.</p> </div> <!-- Bootstrap JS Bundle with Popper --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10