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 trialMadison Coviello
64 PointsDo I need CSS?
Do I need CSS, or can this be be done with only HTML?
<!doctype html>
<html>
<head>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<h1>Welcome to My Web Page!</h1>
</body>
</html>
Alexander Davison
65,469 PointsWhat's the task's question? If i'm able to see that, I might be able to answer your question.
1 Answer
andren
28,558 PointsFor the second task: "Change the color of the h1 tag to purple." you do need to use CSS.
HTML is only used to describe the structure of a webpage, everything to do with styling, which includes things like colors, are changed using CSS.
Mark Trevathan
8,153 PointsMark Trevathan
8,153 PointsWhat is it exactly that you are trying to do? Right now you have a CSS style sheet linked to your HTML, but I don't see any CSS