Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <div class="flex-box">
  2. <section id="lang-option">
  3. <header>
  4. <h1>choose two languages</h1>
  5. </header>
  6. <label id="labelOne"> your first choice is </label><input type="text" id="langOne" /></br>
  7. <label id="labelTwo"> your second choice is </label><input type="text" id="langTwo" /></br>
  8. <button id="langBtn" class="btn btn-default btn-block">Lets Go</button>
  9. </section>
  10.  
  11. <section id="lang-add" class="hide container">
  12. <h1>add words to your vocabulary list</h1>
  13. <div id="addVoc">
  14. <input type="text" id="inputOne" />
  15. <input type="text" id="inputTwo" />
  16. <button id="addBtn" class="btn">add</button>
  17. </div>
  18. <table id="addTable"></table>
  19. <button id="startBtn" class="btn btn-default ">start</button>
  20. </section>
  21.  
  22. <section id="lang-list" class="hide container">
  23. <h1>fill out the gaps</h1>
  24. <label id="result"></label>
  25. <table id="resultTable"></table>
  26. <button id="finishBtn" class="btn btn-default">Finish</button>
  27. <button id="tryAgainBtn" class="btn btn-default">try again</button>
  28. <button id="moreVocBtn" class="btn btn-default">add new words</button>
  29. </section>
  30. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement