mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-29 08:00:43 -04:00
43 lines
293 B
Markdown
43 lines
293 B
Markdown
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```html
|
|
<html>
|
|
<body>
|
|
</body>
|
|
</html>
|
|
```
|
|
|
|
```css
|
|
body {
|
|
background: green;
|
|
}
|
|
```
|
|
|
|
```c
|
|
var x = 'y';
|
|
```
|
|
|
|
|
|
# --solutions--
|
|
|
|
::id{#html-key}
|
|
|
|
```html
|
|
<html>
|
|
<body>
|
|
</body>
|
|
</html>
|
|
```
|
|
|
|
```css
|
|
body {
|
|
background: white;
|
|
}
|
|
```
|
|
|
|
```js
|
|
var x = 'y';
|
|
```
|