--- id: bad87fee1348bd9aec908846 title: Create a Bootstrap Headline challengeType: 0 forumTopicId: 16812 localeTitle: Создать заголовок Bootstrap --- ## Description
Теперь давайте построим что-то с нуля, чтобы практиковать наши навыки HTML, CSS и Bootstrap. Мы построим игровую площадку jQuery, которую мы скоро станем использовать в наших задачах jQuery. Для начала создайте элемент h3 с текстовой jQuery Playground . Разделите свой элемент h3 text-primary исходным классом Bootstrap и центрируйте его с помощью text-center Bootstrap.
## Instructions
## Tests
```yml tests: - text: Add a h3 element to your page. testString: assert($("h3") && $("h3").length > 0); - text: Make sure your h3 element has a closing tag. testString: assert(code.match(/<\/h3>/g) && code.match(/

/g).length === code.match(/

h3 element should be colored by applying the class text-primary testString: assert($("h3").hasClass("text-primary")); - text: Your h3 element should be centered by applying the class text-center testString: assert($("h3").hasClass("text-center")); - text: Your h3 element should have the text jQuery Playground. testString: assert.isTrue((/jquery(\s)+playground/gi).test($("h3").text())); ```

## Challenge Seed
```html ```
## Solution
```html

jQuery Playground

```