Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML

Randy Phan
seal-mask
.a{fill-rule:evenodd;}techdegree
Randy Phan
Front End Web Development Techdegree Student 4,849 Points

Special characters must be escaped: [<] My code is giving this error in adobe DW.

This is the piece of code: <ul> <li><a href= "http://twitter.com/treehouse" target= "_blank"</a><i class= "fab fa-twitter-square icon"></i></li> <li><a href= "http://linkedin.com" target= "_blank"</a> <i class= "fab fa-linkedin icon"></li></i> <li><a href= "http://github.com" target= "_blank"</a><i class= "fab fa-github-square icon"></li></i> </ul>

1 Answer

Steven Parker
Steven Parker
229,744 Points

I'm not familiar with "adobe DW", but "escaping" usually involves placing a special character in front of another one to indicate that it should be used literally.

A common "escape" character is the backslash ("\"). Give that a try.