* fix: remove isHidden key from tool template * fix: removed isHidden key from English challenges * fix: remove isHidden key from Chinese challenges
916 B
916 B
id, title, challengeType
id | title | challengeType |
---|---|---|
5f3477ae9675db8bb7655b30 | Part 13 | 0 |
Description
In the previous step, you used a type selector to style the h1
element. Go ahead and center the h2
and p
elements with a new type selector for each one.
Tests
tests:
- text: Test 1
testString: ''
Challenge Seed
<!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>