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
Marisela Molina
Courses Plus Student 4,438 PointsNeed help with Build an Interactive Website > jQuery Plugins > Responsive Slider Plugin > HTML
Hello I have a problem with task: Within the wrapper create 3 "article" elements with the numbers 1 to 3 It gives me the next error: Bummer! Put the number 1 in the first 'article', the number 2 in the second 'article' and finally 3 in the last
This is my code:
<!DOCTYPE html>
<html>
<head>
<title>Plugin</title>
<style type="text/css" media="screen">
#container article {
width:100px;
height:100px;
color: white;
background: black;
}
</style>
</head>
<body>
<div id="container" class="wmuSlider">
<div class="wmuSliderWrapper">
<article 1>
</article>
<article 2 >
</article>
<article 3 >
</article>
</div>
Thank you in advance
3 Answers
deletedaccount
5,089 PointsYou need to put the number between the opening and closing tag, not inside the tag itself.
<article>1
</article>
<article>2
</article>
<article>3
</article>
Andrew Chalkley
Treehouse Guest Teacher+1 @Charles. Thanks for chiming in!
Marisela Molina
Courses Plus Student 4,438 PointsThank you @Charles I already solved it!