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 trialayjanbayramova
100 Pointscan't change the colour of of the <h1> TAG on html
hi
<!doctype html>
<html>
<head>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<p>Welcome to My Web Page!</p>
</body>
</html>
2 Answers
Steven Parker
231,236 PointsIt doesn't look like you've written any code yet.
At least give it a "good-faith" attempt.
If you're totally stuck, the "HTML paragraph tag" is the thing that looks like this <p>
Also remember when you change a tag, you should also change the corresponding ending tag.
Alexander Alegre
14,340 PointsIt does not seem that you have written any CSS or have any H1 tags. just add H1 tags on the html document and on your styles.css add h1 {color: red;} and switch red to whatever color you'd like. You can also use hex, rgb or rgba to get a more exact color. That will style all of the H1 tags on the document, if you only want to style a specific one give it an id or a class and on the CSS switch h1 with #id or .class
Hope this helped.
Mohamad Fadhli Ismail
11,935 PointsMohamad Fadhli Ismail
11,935 PointsYou haven't put any h1 tags in there
HTML
CSS