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 How to Make a Website Beginning HTML and CSS Write a CSS Selector and Property

what is curly braces

what is curley braces

index.html
<h1>Gabriel Arreola</h1>
<style>
  <hi>style</h1>

2 Answers

curly braces are {} which are used to hold the declaration in the css rule

EX:

h1 {
  color: red;
}

but the challenge just says to add the style element above the h1 tag so it should look like this

<style></style>

<h1>Gabriel Arreola</h1>
Andrew Booth
Andrew Booth
1,578 Points

Curly braces are used in CSS files. CSS stands for "Cascading Style Sheet". In CSS, we use the curly braces for certain functions.

In HTML, the example you are listing is using CSS commands inside the HTML directly with the style tags, though this method is generally frowned upon as it can get very clustered by mixing CSS declarations with an HTML document.