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

CSS

Challenge task 1 of 3

I am Front-end Web Develop test but there is no code but when i click on Preview i can see the page and text and everything. I tried with firefox and google chrome. Link: http://s23.postimg.org/b8lqe3o3f/isitabug.jpg

3 Answers

Hey in this part they don't show you the html file. What they are showing you is a linked css blank document that is being used to modify the page that you see when it is previewed. What they are asking you to do is write the css code that will remove the underlines from the anchor tag or links. Take a look at this site it will help you understand it better.

http://www.w3schools.com/css/css_link.asp

a{
Text-decoration: none;
}

Woohooo yes ty so much. I at start was searching for the index.html page and i did see only main.css and when i looked at all the text as preview i was confused as there was text but no index.html page.

Glad I could help. Good luck on your course. It will become a lot easier the more you practice.