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 trialBhai jccfjf
105 PointsI think there is a little bug. while adding image
pls check it :)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scalable Vector Graphics</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<h1>SVG Example</h1>
<div class="wrapper">
<!-- Add your code below this line -->
<img src="img/star.svg">
</div>
</body>
</html>
3 Answers
Jacob Mishkin
23,118 PointsThere's no bug, you need to add an alt tag to you image.
Mario de Wolf
4,272 Pointsthere are more things that have to change always make sure to close the img with a /> at the end and also put in a alt="#" try this code :
<img src="img/star.svg" alt="photo of a star" />
hope i could help you out to fix it. greetings Mario
Bhai jccfjf
105 Pointsthanks guys :)