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 trialAdam Overby
711 PointsYou mentioned attribute could someone please help me define the syntax more?
I was at another self teaching coding site and whenever you did something wrong it would say things like I thought you were going to define an element but you added an attribute.
So if the text after the = inside the "" is the attribute what is the text before the = sign called? Is it called something?
So if you have <a href="random text">
what is A called? what is href called? what is random text called?
1 Answer
Keenan Johnson
13,841 PointsIn this example:
<a></a> <!--are the HTML element tags -->
href <!--is the attribute-->
"random text" <!--is the value of the href attribute.-->
Check out this link for more basic information about HTML tags and attributes: http://htmldog.com/guides/html/beginner/tags/
Adam Overby
711 PointsAdam Overby
711 PointsThanks for coming to my aide!