
bhavleen kaur
1,516 Pointshow to add class tag to an existing tag?
<!doctype html>
<html>
<head>
<title>List Example</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<a href="#">Follow me on Twitter!</a>
<a href="#">Send me an Email!</a>
</body>
</html>
1 Answer

Heidi Fryzell
Front End Web Development Treehouse Moderator 21,261 PointsHi Bhavleen,
Here is how to add a class to an HTML tag:
<a href="#" class="social-links">Follow me on Twitter!</a>
<a href="#" class="social-links">Send me an Email!</a>
You add the attribute "class" and name it "social-links" as per the challenge directions.
Happy Coding! Heidi