ewh.org

Evaluation du site ewh.org

Community Health Program | EWB USA

 Généré le 01 Avril 2026 12:34

Vieilles statistiques? UPDATE !

Le score est de 55/100

Optimisation du contenu

Titre

Community Health Program | EWB USA

Longueur : 34

Parfait, votre titre contient entre 10 et 70 caractères.

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.

Longueur : 178

Idéalement, votre balise META description devrait contenir entre 70 et 160 caractères (espaces compris). Utilisez cet outil gratuit pour calculer la longueur du texte.

Mots-clefs

Très mauvais. Nous n'avons pas trouvé de balise META keywords sur votre page. Utilisez ce générateur gratuit de balises META en ligne pour créer des mots-clés.

Propriétés Open Graph

Bien, cette page profite des balises META Open Graph.

Propriété Contenu
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.

Niveaux de titre

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

Images

Nous avons trouvé 17 image(s) sur cette page Web.

2 attribut(s) alt sont vides ou manquants. Ajouter un texte alternatif permet aux moteurs de recherche de mieux comprendre le contenu de vos images.

Ratio texte/HTML

Ratio : 9%

le ratio de cette page texte/HTML est au-dessous de 15 pour cent, ce qui signifie que votre site manque de contenu textuel.

Flash

Parfait, aucun contenu FLASH n'a été détecté sur cette page.

Iframe

Génial, il n'y a pas d'Iframes détectés sur cette page.

Réécriture d'URLs

Bien. Vos liens sont optimisés!

Tiret bas dans les URLs

Parfait! Aucuns soulignements détectés dans vos URLs.

Liens dans la page

Nous avons trouvé un total de 9 lien(s) dont 0 lien(s) vers des fichiers

Texte d'ancre Type Juice
Donate now → Externe Passing Juice
Donate Now Interne Passing Juice
Volunteer Interne Passing Juice
GIVE TO COMMUNITY HEALTH Externe Passing Juice
Visit the ifixit digital library Externe Passing Juice
Applications are now open Externe Passing Juice
Learn More Interne Passing Juice
Morweb.org Externe Passing Juice
Privacy Interne Passing Juice

Mots-clefs

Nuage de mots-clefs

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

Cohérence des mots-clefs

Mot-clef Contenu Titre Mots-clefs Description Niveaux de titre
health 18
community 15
volunteer 14
equipment 10
engineering 9

Ergonomie

Url

Domaine : ewh.org

Longueur : 7

Favicon

Génial, votre site web dispose d'un favicon.

Imprimabilité

Aucun style CSS pour optimiser l'impression n'a pu être trouvé.

Langue

Bien. Votre langue est : en.

Dublin Core

Cette page ne profite pas des métadonnées Dublin Core.

Document

Doctype

HTML 5

Encodage

Parfait. Votre charset est UTF-8.

Validité W3C

Erreurs : 0

Avertissements : 0

E-mail confidentialité

Attention! Au moins une adresse e-mail a été trouvée en texte clair. Utilisez une protection anti-spam gratuite pour cacher vos e-mails aux spammeurs.

HTML obsolètes

Génial! Nous n'avons pas trouvé de balises HTML obsolètes dans votre code.

Astuces vitesse

Excellent, votre site n'utilise pas de tableaux imbriqués.
Mauvais, votre site web utilise des styles css inline.
Mauvais, votre site web contient trop de fichiers CSS (plus de 4).
Mauvais, votre site web contient trop de fichiers javascript (plus de 6).
Parfait : votre site tire parti de gzip.

Mobile

Optimisation mobile

Icône Apple
Méta tags viewport
Contenu FLASH

Optimisation

Sitemap XML

Manquant

Votre site web ne dispose pas d’une sitemap XML, ce qui peut poser problème.

La sitemap recense les URLs que les moteurs de recherche peuvent indexer, tout en proposant d’éventuelles informations supplémentaires (comme la date de dernière mise à jour, la fréquence des changements, ainsi que leur niveau d’importance). Ceci permet aux moteurs de recherche de parcourir le site de façon plus efficace.

Robots.txt

https://ewh.org/robots.txt

Votre site dispose d’un fichier robots.txt, ce qui est optimal.

Mesures d'audience

Votre site web dispose d’une outil d'analytics, ce qui est optimal.

   Google Analytics

PageSpeed Insights


Dispositif
Les catégories

Free SEO Testing Tool

Free SEO Testing Tool est un outil gratuit de référencement qui vous aidera à analyser vos pages web