* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
		
			
				
	
	
		
			59 lines
		
	
	
		
			980 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			980 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | |
| id: 5f356ed6cf6eab5f15f5cfe6
 | |
| title: Part 21
 | |
| challengeType: 0
 | |
| dashedName: part-21
 | |
| ---
 | |
| 
 | |
| # --description--
 | |
| 
 | |
| The `div` element is used mainly for design layout purposes unlike the other content elements you have used so far. Add a `div` element inside the `body` element and then move all the other elements inside the new `div`.
 | |
| 
 | |
| # --hints--
 | |
| 
 | |
| Test 1
 | |
| 
 | |
| ```js
 | |
| 
 | |
| ```
 | |
| 
 | |
| # --seed--
 | |
| 
 | |
| ## --seed-contents--
 | |
| 
 | |
| ```html
 | |
| <!DOCTYPE html>
 | |
| <html>
 | |
|   <head>
 | |
|     <meta charset="utf-8" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     <title>Camper Cafe Menu</title>
 | |
|     <link href="styles.css" rel="stylesheet" type="text/css" />
 | |
|   </head>
 | |
| --fcc-editable-region--
 | |
|   <body>
 | |
|     <header>
 | |
|       <h1>CAMPER CAFE</h1>
 | |
|       <p>Est. 2020</p>
 | |
|     </header>
 | |
|     <main>
 | |
|       <section>
 | |
|         <h2>Coffees</h2>
 | |
|       </section>
 | |
|     </main>
 | |
|   </body>
 | |
| --fcc-editable-region--
 | |
| <html>
 | |
| ```
 | |
| 
 | |
| ```css
 | |
| body {
 | |
|   background-color: burlywood;
 | |
| }
 | |
| 
 | |
| h1, h2, p {
 | |
|   text-align: center;
 | |
| }
 | |
| ```
 | |
| 
 |