diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download.php
index bbe374d22..517b73f9a 100644
--- wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download.php
+++ wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download.php
@@ -217,8 +217,13 @@ the_post();
 					<p class="subheading col-8"><?php esc_html_e( 'Choosing a hosting provider can be difficult, so we have selected a few of the best to get you started.', 'wporg' ); ?></p>
 
 					<?php foreach ( array_rand( $hosts, 2 ) as $host ) : ?>
+
 					<div class="host col-6">
-						<img src="<?php echo esc_url( get_theme_file_uri( $hosts[ $host ]['logo'] ) ); ?>" class="logo" />
+						<img src="<?php echo esc_url( get_theme_file_uri( $hosts[ $host ]['logo'] ) ); ?>" class="logo" alt="<?php
+							/* translators: Name of hosting company */
+							printf( esc_html__( '%s company logo', 'wporg' ), esc_html( $hosts[ $host ]['name'] ) );
+							?>"
+						/>
 						<p><?php echo esc_html( $hosts[ $host ]['description'] ); ?></p>
 						<a href="<?php echo esc_url( $hosts[ $host ]['url'] ); ?>">
 							<?php
@@ -238,8 +243,12 @@ the_post();
 					<p class="subheading"><?php esc_html_e( 'Create or update content on the go with our mobile apps.', 'wporg' ); ?></p>
 
 					<div class="web-stores">
-						<a href="http://appstore.com/WordPress" class="button-ios"><img src="<?php echo esc_url( get_theme_file_uri( 'images/badge-apple.png' ) ); ?>" /></a>
-						<a href="http://play.google.com/store/apps/details?id=org.wordpress.android" class="button-android"><img src="<?php echo esc_url( get_theme_file_uri( 'images/badge-google-play.png' ) ); ?>" /></a>
+						<a href="http://appstore.com/WordPress" class="button-ios" >
+							<img src="<?php echo esc_url( get_theme_file_uri( 'images/badge-apple.png' ) ); ?>" alt="<?php esc_html_e( 'Available on the Apple store', 'wporg' ); ?>" />
+						</a>
+						<a href="http://play.google.com/store/apps/details?id=org.wordpress.android" class="button-android">
+							<img src="<?php echo esc_url( get_theme_file_uri( 'images/badge-google-play.png' ) ); ?>"  alt="<?php esc_html_e( 'Available on Google play', 'wporg' ); ?>" />
+						</a>
 					</div>
 					<a href="https://apps.wordpress.com/mobile/" class="call-to-action"><?php esc_html_e( 'Learn more about our mobile apps', 'wporg' ); ?></a>
 				</section>
