ewh.org

Website beoordeling ewh.org

Community Health Program | EWB USA

 Gegenereerd op April 01 2026 12:34 PM

Oude statistieken? UPDATE !

De score is 55/100

SEO Content

Title

Community Health Program | EWB USA

Lengte : 34

Perfect, uw title tag bevat tussen de 10 en 70 karakters.

Description

Engineers Without Borders USA’s (EWB-USA) Community Health Program leverages a network of biomedical engineering volunteers to improve community health outcomes around the world.

Lengte : 178

Let op, uw meta description zou tussen de 70 en 160 karakters (spaces included) moeten bevatten.

Keywords

Erg slecht. We hebben geen meta keywords gevonden in uw website. Gebruik deze gratis online meta tags generator om keywords te genereren.

Og Meta Properties

Goed, uw page maakt gebruik van Og Properties.

Property Content
type website
url https://ewb-usa.org/Community-Health
title Community Health Program | EWB USA
description Engineers Without Borders USA’s (EWB-USA) Community Health Program leverages a network of biomedical engineering volunteers to improve community health outcomes around the world.

Headings

H1 H2 H3 H4 H5 H6
3 12 15 6 1 0
  • [H1] Community Health Program
  • [H1] ").text("Missing h1 tag").prependTo("body"); } const headingLevels = { 'H1': 1, 'H2': 2, 'H3': 3, 'H4': 4, 'H5': 5, 'H6': 6 }; let lastHeadingLevel = 0; $("h1, h2, h3, h4, h5, h6").each(function() { const $this = $(this); const currentLevel = headingLevels[$this.prop("tagName")]; const tagName = $this.prop("tagName"); $this.addClass("highlight-htag"); if (currentLevel > lastHeadingLevel + 1) { $this.attr("aria-label", "Heading out of order") .after('Heading is out of order. Ensure proper heading hierarchy.'); $this.append(`${tagName}`); } else { $this.append(`${tagName}`); } lastHeadingLevel = currentLevel; }); } function checkLinks() { $("a").each(function() { const text = $(this).text().trim(); const href = $(this).attr("href"); if (href && href !== "#" && href !== "/" && !href.includes("#") && !href.includes("javascript:")) { if (!text || text === "click here") { $(this).addClass("highlight-issue").attr("aria-label", "Non-descriptive link text").each(function() { $(this).after('Non-descriptive link text. Use descriptive text that provides context for the link.'); }); } } }); } function checkColorContrast() { $("*").each(function() { const bgColor = $(this).css("background-color"); const textColor = $(this).css("color"); if (bgColor && textColor) { const contrastRatio = calculateContrastRatio(bgColor, textColor); if (contrastRatio < 4.5) { $(this).addClass("highlight-issue").attr("aria-label", "Insufficient color contrast").each(function() { $(this).after('Insufficient color contrast. Ensure text is readable against the background color.'); }); } } }); } function calculateContrastRatio(color1, color2) { const lum1 = getRelativeLuminance(color1); const lum2 = getRelativeLuminance(color2); const lighter = Math.max(lum1, lum2); const darker = Math.min(lum1, lum2); return (lighter + 0.05) / (darker + 0.05); } function getRelativeLuminance(color) { const rgb = parseColor(color); const r = adjustColor(rgb[0]); const g = adjustColor(rgb[1]); const b = adjustColor(rgb[2]); return 0.2126 * r + 0.7152 * g + 0.0722 * b; } function adjustColor(colorValue) { colorValue = colorValue / 255; return colorValue 0) { $(mutation.addedNodes).each(function() { $(this).addClass("highlight-issue").attr("aria-label", "Dynamic content update").each(function() { $(this).after('Dynamic content update. Ensure updates to the content are announced to screen reader users.'); }); }); } }); }); observer.observe(document.body, { childList: true, subtree: true }); } function addSkipLink() { $("").attr("href", "#main-content").text("Skip to main content").prependTo("body"); } }); #check-links { position: fixed; top: 250px; right: -150px; /* Initially hidden */ background: #4044c6; color: #fff; z-index: 999; padding: 10px 15px; border-radius: 5px; font-weight: 700; font-size: 16px; cursor: pointer; display: none; /* Ensure it's initially hidden */ } #check-links:hover { background-color: #2f2063; } .link-status { text-decoration: none; } .broken-link { color: red; background-color: rgba(255, 0, 0, 0.6) !important; border: 2px solid rgba(255, 0, 0, 0.99) !important; } .working-link { color: green; background-color: rgba(0, 255, 0, 0.2) !important; border: 2px solid rgba(0, 255, 0, 0.99) !important; } .external-link { background-color: rgba(255, 255, 0, 0.2) !important; border: 2px solid rgba(255, 255, 0, 0.99) !important; } .unset-link { color: gray; background-color: rgba(0, 255, 246, 0.6) !important; border: 2px solid rgba(0, 255, 246, 0.99) !important; } #link-check-legend { display: none; position: fixed; top: 55%; right: 20px; background: #f9f9f9; padding: 15px; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); z-index: 998; width: 200px; font-size: 15px; } .legend-item { margin-bottom: 10px; } .legend-color { display: inline-block; width: 20px; height: 20px; margin-right: 10px; border-radius: 50%; position: relative; top: 5px; } .legend-color.broken { background-color: red; } .legend-color.working { background-color: green; } .legend-color.external { background-color: yellow; } .legend-color.unset { background-color: #00fff6; } Check Links $(document).on('mousedown', function (e) { if (e.button === 0) { // Left-click $(document).on('keydown.linkCheck', function (e) { if (e.key.toLowerCase() === 'l') { toggleLinkChecker(); } }); } }); $(document).on('mouseup', function (e) { if (e.button === 0) { // Left-click release $(document).off('keydown.linkCheck'); } }); function toggleLinkChecker() { const $checkLinks = $('#check-links'); if ($checkLinks.is(':visible')) { $checkLinks.stop().animate({ right: '-150px' }, 500, function() { $(this).hide(); }); } else { $checkLinks.show().stop().animate({ right: '20px' }, 500); } } $(document).ready(function() { $("#check-links").click(function() { checkLinks(); $("#link-check-legend").fadeIn(); }); function checkLinks() { let brokenLinks = 0; let workingLinks = 0; let externalLinks = 0; let unsetLinks = 0; const linkPromises = []; $("a").each(function() { const $link = $(this); const url = $link.attr('href'); const targetBlank = $link.attr('target') === '_blank'; if (!url || url === '#' || url === '' || url === '/') { $link.addClass('unset-link'); unsetLinks++; updateLegend(brokenLinks, workingLinks, externalLinks, unsetLinks); return; } const isExternal = targetBlank || (new URL(url, window.location.href)).hostname !== window.location.hostname; if (isExternal) { $link.addClass('external-link'); externalLinks++; } const promise = $.ajax({ url: url, type: 'HEAD' }).then( function() { $link.addClass('working-link link-status'); if (!isExternal) workingLinks++; }, function() { if (!$link.hasClass('unset-link') && !isExternal) { $link.addClass('broken-link link-status'); brokenLinks++; } } ).always(() => { updateLegend(brokenLinks, workingLinks, externalLinks, unsetLinks); }); linkPromises.push(promise); }); $.when(...linkPromises).then(() => { updateLegend(brokenLinks, workingLinks, externalLinks, unsetLinks); }); } function updateLegend(broken, working, external, unset) { $("#link-check-legend").html(` Broken Links: ${broken} Working Links: ${working} External Links: ${external} Unset Links: ${unset} `); } }); .seo-checker { display: none; position: fixed; top: 350px; right: 20px; border: 1px solid #4044c6; background: #4044c6; color: #fff; z-index: 999; padding: 10px 15px; border-radius: 5px; font-weight: 700; font-size: 16px; cursor: pointer; transition: right 0.5s ease; } .seo-checker:hover { border: 1px solid #2f2063; background: #2f2063; } .seo-modal { display: none; position: fixed; z-index: 999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.4); } .seo-modal-content { background-color: #fefefe; margin: 15% auto; padding: 20px; border: 1px solid #888; width: 80%; max-width: 600px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); border-radius: 10px; } .seo-modal-content h2 { font-size: 24px; margin-bottom: 20px; text-align: center; } .seo-modal-content ul { list-style: none; padding: 0; } .seo-modal-content ul li { background: #f9f9f9; margin: 5px 0; padding: 10px; border-left: 5px solid #4044c6; border-radius: 5px; } .seo-modal-content ul li:nth-child(even) { background: #efefef; } .seo-modal-content .close { color: #aaa; float: right; font-size: 28px; font-weight: bold; } .seo-modal-content .close:hover, .seo-modal-content .close:focus { color: #000; text-decoration: none; cursor: pointer; } .highlight-error { border: 2px solid #cc0000 !important; } .seo-modal-content ul li.error { border-left: 5px solid red; } .seo-modal-content ul li.pass { border-left: 5px solid green; } Check SEO × SEO Report
  • [H1] Placeholder H1
  • [H2] Notice: Engineering World Health has Merged with Engineers Without Borders USA
  • [H2] In 2024, Engineers Without Borders USA absorbed Engineering World Health (EWH). Engineering World Health was an organization with a similar mission and approach to capacity building and community development through engineering. Founded in 2001, EWH used a chapter structure like EWB-USA and sent volunteers into the field for experiences to improve community health outcomes through biomedical engineering and repairing medical equiptment. This strategic partnership combines our strengths, broadens our reach, and amplifies our impact in improving health outcomes through engineering solutions worldwide.
  • [H2] Meeting The Global Medical Equipment Challenge
  • [H2] Community Health Solutions at EWB-USA
  • [H2] Community Health Institutes
  • [H2] How to Get Involved 
  • [H2] Contact Us
  • [H2] About Us
  • [H2] Programs
  • [H2] Get Involved
  • [H2] Stay Connected
  • [H2] Performance Report
  • [H3] Help Us Make a Positive Impact for More Communities in 2026 
  • [H3] Help Us Make a Positive Impact for More Communities in 2026 
  • [H3] Are you interested in applying to participate in a community health institute?
  • [H3] 1,300 Volunteers
  • [H3] 13,800 Repairs Made
  • [H3] 7 Countries
  • [H3] Improved Patient Outcomes
  • [H3] Capacity Building with Hospital Staff
  • [H3] Leadership Development
  • [H3] Contribute Knowledge with iFixit
  • [H3] Contribute to the Medical Device Library 
  • [H3] Participate in a Community Health Institute
  • [H3] Summer 2026 
  • [H3] ARE YOU A COMMUNITY
  • [H3] ARE YOU AN EWB-USA CHAPTER
  • [H4] WATER SUPPLY
  • [H4]  Health Infrastructure
  • [H4]  SANITATION
  • [H4] STERILIZATION
  • [H4] ENERGY
  • [H4]  OXYGEN SUPPLY
  • [H5] Since 2001, Engineering World Health facilitated thousands of volunteer experiences across 7 countries, completing over 13,000 repairs worth over $26 Million USD. This vital work will continue as a part of Engineers Without Borders USA's Community Health Program

Afbeeldingen

We vonden 17 afbeeldingen in de pagina.

2 alt attributen ontbreken. Voeg alternatieve text toe zodat zoekmachines beter kunnen beoordelen wat het onderwerp van de afbeeldingen is.

Text/HTML Ratio

Ratio : 9%

De ratio van text tot HTML code is below 15 procent, dit betekent dat uw pagina waarschijnlijk meer tekst nodig heeft.

Flash

Perfect, geen Flash content gevonden in uw website.

Iframe

Perfect, er zijn geen Iframes in uw website aangetroffen.

Herschreven URL

Perfect. Uw links zien er vriendelijk uit!

Underscores in de URLs

Perfect! Geen underscores gevonden in uw URLs.

In-page links

We vonden een totaal van 9 links inclusie 0 link(s) naar bestanden

Ankertekst Type samenstelling
Donate now → Extern doFollow
Donate Now Intern doFollow
Volunteer Intern doFollow
GIVE TO COMMUNITY HEALTH Extern doFollow
Visit the ifixit digital library Extern doFollow
Applications are now open Extern doFollow
Learn More Intern doFollow
Morweb.org Extern doFollow
Privacy Intern doFollow

SEO Keywords

Keywords Cloud

ewb-usa program water give volunteer community engineering borders equipment health

Keywords Consistentie

Keyword Content Title Keywords Description Headings
health 18
community 15
volunteer 14
equipment 10
engineering 9

Bruikbaarheid

Url

Domein : ewh.org

Lengte : 7

Favicon

Goed, uw website heeft een favicon.

Printbaarheid

Jammer. We vonden geen Print-Vriendelijke CSS.

Taal

Goed. Uw ingestelde taal is en.

Dublin Core

Deze pagina maakt geen gebruik van Dublin Core.

Document

Doctype

HTML 5

Encoding

Perfect. Uw ingestelde Charset is UTF-8.

W3C Validiteit

Fouten : 0

Waarschuwingen : 0

E-mail Privacy

Waarschuwing! Er is op zijn minst 1 e-mailadres gevonden als platte tekst. (voorkom spam!). Gebruik deze gratis antispam protector om e-mailadressen te verbergen voor spammers.

Niet ondersteunde HTML

Geweldig! We hebben geen niet meer ondersteunde HTMl tags gevonden in uw HTML.

Speed Tips

Geweldig, uw website heeft geen tabellen in een tabel.
Jammer, uw website maakt gebruik van inline styles.
Jammer, uw website heeft teveel CSS bestanden (meer dan 4).
Jammer, uw website heeft teveel JS bestanden (meer dan 6).
Perfect, uw website haalt voordeel uit gzip.

Mobile

Mobile Optimization

Apple Icon
Meta Viewport Tag
Flash content

Optimalisatie

XML Sitemap

Ontbrekend

Uw website heeft geen XML sitemap- dit kan problematisch zijn.

Een sitemap vermeld url's die beschikbaar zijn voor crawlen en kan extra informatie bevatten zoals uw laatste site-updates, frequentie van wijzigingen en het belang van de url's. Dit laat zoekmachines toe om de site intelligenter te doorzoeken.

Robots.txt

https://ewh.org/robots.txt

Geweldig uw website heeft een robots.txt bestand.

Analytics

Perfect, uw website heeft een analytics tool.

   Google Analytics

PageSpeed Insights


Device
Categorieën

Free SEO Testing Tool

Website review is een gratis tool waarmee u eenvoudig uw website kunt analyseren