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';