diff --git a/compendium-frontend/src/components/global/Banner.tsx b/compendium-frontend/src/components/global/Banner.tsx
index a844feeec5c68f080afc0d3872529a552b646093..60ea19f6f513fae77e5a91c810602c07d73822ed 100644
--- a/compendium-frontend/src/components/global/Banner.tsx
+++ b/compendium-frontend/src/components/global/Banner.tsx
@@ -22,7 +22,7 @@ function Banner({ children, type }: inputProps): ReactElement {
                 <Row>
                     <Row>
                         <div className="section-container">
-                            <img src={SectionDataLogo} style={{ maxWidth: '7rem', marginBottom: '1rem' }} />
+                            <img src={SectionDataLogo} style={{ maxWidth: '7rem', marginBottom: '1rem' }} alt="Compendium Data logo" />
                             <div style={{ display: "flex", alignSelf: "right" }}>
                                 <div className="center-text" style={{ paddingTop: '1rem' }}>
                                     {children}
diff --git a/compendium-frontend/src/components/global/ExternalPageNavBar.tsx b/compendium-frontend/src/components/global/ExternalPageNavBar.tsx
index 9422605b3ac27e09724096263e7e6d4ed297dd27..b578bc67baf40a328ced08d962ec6900d2114526 100644
--- a/compendium-frontend/src/components/global/ExternalPageNavBar.tsx
+++ b/compendium-frontend/src/components/global/ExternalPageNavBar.tsx
@@ -17,7 +17,7 @@ function ExternalPageNavBar(): ReactElement {
                     <Col xs={10}>
                         <div className="nav-wrapper">
                             <nav className="header-nav">
-                                <a href="https://geant.org/"><img src={GeantLogo} /></a>
+                                <a href="https://geant.org/"><img src={GeantLogo} alt="GÉANT Logo" /></a>
 
                                 <ul>
                                     <li><a className="nav-link-entry" href="https://network.geant.org/">NETWORK</a></li>
diff --git a/compendium-frontend/src/components/global/GeantFooter.tsx b/compendium-frontend/src/components/global/GeantFooter.tsx
index 58d2275993ead119de61e7a44a005861dd99cdd8..06823b731794cebb5dec39f63ea642cba4756e44 100644
--- a/compendium-frontend/src/components/global/GeantFooter.tsx
+++ b/compendium-frontend/src/components/global/GeantFooter.tsx
@@ -11,9 +11,9 @@ function GeantFooter(): ReactElement {
             <Row>
                 <Col>
                     <a href="https://geant.org">
-                        <img src={GeantLogo} className="m-3" style={{ maxWidth: "100px" }} />
+                        <img src={GeantLogo} className="m-3" style={{ maxWidth: "100px" }} alt="GÉANT Logo" />
                     </a>
-                    <img src={EULogo} className="m-3" style={{ maxWidth: "200px" }} />
+                    <img src={EULogo} className="m-3" style={{ maxWidth: "200px" }} alt="European Union Flag" />
                 </Col>
                 <Col className="mt-4 text-end">
                     <span>
diff --git a/compendium-frontend/src/components/global/SectionLink.tsx b/compendium-frontend/src/components/global/SectionLink.tsx
index cddab19a376f93b2350a7c8cca79b4c02cd729f0..3005288e903f4514c6f580fcdc7550e9376fab53 100644
--- a/compendium-frontend/src/components/global/SectionLink.tsx
+++ b/compendium-frontend/src/components/global/SectionLink.tsx
@@ -16,7 +16,7 @@ function SectionLink({ section }: inputProps): ReactElement {
 
 
             </div>
-            <img src={SectionDataLogo} style={{ maxWidth: "4rem" }} />
+            <img src={SectionDataLogo} style={{ maxWidth: "4rem" }} alt="Compendium Data logo" />
 
         </div>
     );