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

HTML Introduction to HTML and CSS (2016) Adding a New Web Page Write the CSS

Johannes Neutze
Johannes Neutze
1,890 Points

I cannot reflect CSS changes to the html for the resume exercise

Here is the resume.html:

<!DOCTYPE html> <html> <head> <title> Dilara Neutze's resume </title> <link rel= "style-sheet" href="resume.css"> </head> <body> <img src= "http://placeimg.com/640/480/any" alt= "Dilara Neutze, Product Designer" class= "main-image"> <h1> Dilara Neutze, Product Designer </h1> <h2>Summary of qualifications</h2> <ul> <li>Experience in delivering products and services that</li> <li>Academic mash up of engineering, business and design </li> </ul> </body> </html>

here is the resume.css

body { font-family: "Arial"; }

.main-image { border: solid 4px black; border-radius: 50%; }

1 Answer

mc24
PLUS
mc24
Courses Plus Student 3,041 Points
<!DOCTYPE html>
<html>

<head>
    <title> Dilara Neutze's resume </title>
    <link rel="stylesheet" href="resume.css">

</head>

<body>
    <img src="http://placeimg.com/640/480/any" alt="Dilara Neutze, Product Designer" class="main-image">
    <h1> Dilara Neutze, Product Designer </h1>
    <h2>Summary of qualifications</h2>
    <ul>
        <li>Experience in delivering products and services that</li>
        <li>Academic mash up of engineering, business and design </li>
    </ul>
</body>

</html>

<link rel="stylesheet" href="resume.css">

you wrote style-sheet =) its written together.

Good luck!