| <html> |
| <head> |
| <meta charset="utf-8"> |
| <meta name="description" content="$1"> |
| <meta name="viewport" content="width=device-width, initial-scale=1"> |
| <link rel="stylesheet" type="text/css" href="style.css"> |
| <title>ReactJS Koans</title> |
| </head> |
| <body> |
| <header> |
| <h1> |
| React Koans by |
| <span>Arkency</span> |
| </h1> |
| </header> |
| <article> |
| <ul class="tabs"> |
| <li class="exercise"> |
| <input type="radio" checked name="tabs" id="tab1"> |
| <label for="tab1">HelloWorld</label> |
| <div id="tab-content1" class="tab-content animated fadeIn"></div> |
| </li> |
| <li class="exercise"> |
| <input type="radio" name="tabs" id="tab2"> |
| <label for="tab2">PartiesList</label> |
| <div id="tab-content2" class="tab-content animated fadeIn"></div> |
| </li> |
| <li class="exercise"> |
| <input type="radio" name="tabs" id="tab3"> |
| <label for="tab3">WhatsYourName</label> |
| <div id="tab-content3" class="tab-content animated fadeIn"></div> |
| </li> |
| <li class="exercise"> |
| <input type="radio" name="tabs" id="tab4"> |
| <label for="tab4">GroceryList-part1</label> |
| <div id="tab-content4" class="tab-content animated fadeIn"></div> |
| </li> |
| <li class="exercise"> |
| <input type="radio" name="tabs" id="tab5"> |
| <label for="tab5">GroceryList-part2</label> |
| <div id="tab-content5" class="tab-content animated fadeIn"></div> |
| </li> |
| <li class="exercise"> |
| <input type="radio" name="tabs" id="tab6"> |
| <label for="tab6">GroceryList-part3</label> |
| <div id="tab-content6" class="tab-content animated fadeIn"></div> |
| </li> |
| <li class="exercise"> |
| <input type="radio" name="tabs" id="tab7"> |
| <label for="tab7">GroceryList-part4</label> |
| <div id="tab-content7" class="tab-content animated fadeIn"></div> |
| </li> |
| <li class="exercise"> |
| <input type="radio" name="tabs" id="tab8"> |
| <label for="tab8">RenderComponent</label> |
| <div id="tab-content8" class="tab-content animated fadeIn"></div> |
| </li> |
| </ul> |
| </article> |
| <script type="text/javascript" src="app.js"></script> |
| </body> |
| </html> |
|
|