62 lines
916 B
Markdown
62 lines
916 B
Markdown
![]() |
---
|
||
|
id: 5f3477ae9675db8bb7655b30
|
||
|
title: Part 13
|
||
|
challengeType: 0
|
||
|
---
|
||
|
|
||
|
## Description
|
||
|
<section id='description'>
|
||
|
|
||
|
In the previous step, you used a <dfn>type selector</dfn> to style the `h1` element. Go ahead and center the `h2` and `p` elements with a new type selector for each one.
|
||
|
|
||
|
</section>
|
||
|
|
||
|
## Tests
|
||
|
<section id='tests'>
|
||
|
|
||
|
```yml
|
||
|
tests:
|
||
|
- text: Test 1
|
||
|
testString: ''
|
||
|
|
||
|
```
|
||
|
|
||
|
</section>
|
||
|
|
||
|
## 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>
|
||
|
h1 {
|
||
|
text-align: center;
|
||
|
}
|
||
|
</style>
|
||
|
--fcc-editable-region--
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<h1>CAMPER CAFE</h1>
|
||
|
<p>Est. 2020</p>
|
||
|
</header>
|
||
|
<main>
|
||
|
<section>
|
||
|
<h2>Coffees</h2>
|
||
|
</section>
|
||
|
</main>
|
||
|
</body>
|
||
|
<html>
|
||
|
```
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</section>
|