freeCodeCamp/guide/english/certifications/front-end-libraries/bootstrap/center-text-with-bootstrap/index.md

26 lines
563 B
Markdown
Raw Normal View History

---
title: Center Text with Bootstrap
---
## Center Text with Bootstrap
The challenge introduces the class of ``` text-center ``` for centering text and has to be used to center the ``` <h2></h2> ``` element.
### Hint 1
Use the class of ``` text-center ```.
### Hint 2
The class has to applied on the first ``` <h2></h2> ``` in the document.
### Solution
Since you need to add a class, edit the HTML of the first ```html <h2></h2> ``` from:
```html
<h2 class="red-text">CatPhotoApp</h2>
```
to
```html
<h2 class="red-text text-center">CatPhotoApp</h2>
```