From 6f071c78c56283bd6aba0893f63934878b8f84cc Mon Sep 17 00:00:00 2001 From: Amenity Applewhite Date: Sat, 19 Aug 2017 18:39:29 -0500 Subject: [PATCH] Remove `title` attribute from anchor element definition slide. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit While `title` is a global attribute, it is rarely applied to anchor elements. The W3C [cautions specifically against this usage](https://www.w3.org/TR/WCAG20-TECHS/H33.html). See also: - [HTML5 Accessibility Chops: title attribute use and abuse](https://www.paciellogroup.com/blog/2012/01/html5-accessibility-chops-title-attribute-use-and-abuse/) - [How–to: Use TITLE attributes](http://a11yproject.com/posts/title-attributes/) --- class1.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/class1.html b/class1.html index fbd3517d..76d9b5a5 100644 --- a/class1.html +++ b/class1.html @@ -470,15 +470,14 @@

Let's Develop it!

Element: Link

-

Links have three components

+

Links have two components

-
<a href="http://www.girldevelopit.com" title="Girl Develop It">Girl Develop It</a><
+
<a href="http://www.girldevelopit.com">Girl Develop It</a>
 
-

Girl Develop It

+

Girl Develop It

The <a> tag surrounds text or images to turn them into links