fix: add solution for accessibility challenge (#35366)

pull/35414/head
Dana Ottaviani 2019-02-25 21:58:35 -05:00 committed by Manish Giri
parent fd1a19d956
commit 30fd0aa78e
1 changed files with 17 additions and 2 deletions

View File

@ -62,7 +62,22 @@ tests:
## Solution ## Solution
<section id='solution'> <section id='solution'>
```js ```html
// solution required <head>
<style>
button {
color: #003366;
background-color: #FFFF33;
font-size: 14px;
padding: 10px;
}
</style>
</head>
<body>
<header>
<h1>Danger!</h1>
</header>
<button>Delete Internet</button>
</body>
``` ```
</section> </section>