---
id: 5f344f9c805cd193c33d829c
title: Part 12
challengeType: 0
## Description
<section id='description'>
You can add style to an element by specifying it in the `style` element and setting a property for it like this:
```css
element {
property: value;
}
```
Center your `h1` element by setting its `text-align` property to the value `center`.
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: Test 1
testString: ''
## Challenge Seed
<section id='challengeSeed'>
<div id='html-seed'>
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Camper Cafe Menu</title>
--fcc-editable-region--
<style>
</style>
</head>
<body>
<header>
<h1>CAMPER CAFE</h1>
<p>Est. 2020</p>
</header>
<main>
<section>
<h2>Coffees</h2>
</main>
</body>
</div>