Advertisement
Svetlana_Ovsjanikova

html_Menu

Sep 26th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <div id="London" class="tabcontent">
  2. <h3>London</h3>
  3. <p>London is the capital city of England.</p>
  4. </div>
  5.  
  6. <div id="Paris" class="tabcontent">
  7. <h3>Paris</h3>
  8. <p>Paris is the capital of France.</p>
  9. </div>
  10.  
  11. <div id="Tokyo" class="tabcontent">
  12. <h3>Tokyo</h3>
  13. <p>Tokyo is the capital of Japan.</p>
  14. </div>
  15.  
  16. <div id="Oslo" class="tabcontent">
  17. <h3>Oslo</h3>
  18. <p>Oslo is the capital of Norway.</p>
  19. </div>
  20.  
  21. <button class="tablink" onclick="openCity('London', this, 'red')" id="defaultOpen">London</button>
  22. <button class="tablink" onclick="openCity('Paris', this, 'green')">Paris</button>
  23. <button class="tablink" onclick="openCity('Tokyo', this, 'blue')">Tokyo</button>
  24. <button class="tablink" onclick="openCity('Oslo', this, 'orange')">Oslo</button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement