From 967ca824e3cd54e2df80bbacaedb66a08c431b88 Mon Sep 17 00:00:00 2001 From: Eric Clinger Date: Thu, 21 Feb 2019 18:32:43 -0700 Subject: [PATCH] Removed RAS (redundant acronym syndrome) syndrome References to HTTPS and HTTP were written as HTTPS protocol (Hypertext Transfer Protocol Secure protocol) and HTTP protocol (Hypertext Transfer Protocol protocol) which is redundant. --- htmlcssguide.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htmlcssguide.html b/htmlcssguide.html index 79ebafe..5ac4b93 100644 --- a/htmlcssguide.html +++ b/htmlcssguide.html @@ -25,16 +25,16 @@ quality is maintained.

2.1.1 Protocol

-

Use the HTTPS protocol for embedded resources where possible.

+

Use HTTPS for embedded resources where possible.

-

Always use the HTTPS protocol (https:) for images and other media +

Always use HTTPS (https:) for images and other media files, style sheets, and scripts, unless the respective files are not available over HTTPS.

<!-- Not recommended: omits the protocol -->
 <script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
 
-<!-- Not recommended: uses the HTTP protocol -->
+<!-- Not recommended: uses HTTP -->
 <script src="http://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
 
@@ -45,7 +45,7 @@ over HTTPS.

/* Not recommended: omits the protocol */
 @import '//fonts.googleapis.com/css?family=Open+Sans';
 
-/* Not recommended: uses the HTTP protocol */
+/* Not recommended: uses HTTP */
 @import 'http://fonts.googleapis.com/css?family=Open+Sans';