Created
May 25, 2019 11:36
-
-
Save do-me/ebb86ca3a34d691fdc155b77581e8076 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script> | |
function show(shown, hidden) { | |
document.getElementById(shown).style.display='block'; | |
document.getElementById(hidden).style.display='none'; | |
return false; | |
} | |
</script> | |
</head> | |
<body> | |
<div id="Page1"> | |
<center><font size="7"> An Election Analysis - Germany´s Right Swing in the Parliament Elections 2017</font></center> | |
<center><h2>Final project for "Big Data in the Social Sciences"</h2></center> | |
<center><h2>By D.W. and C.C. </h2></center> | |
<a href="#" onclick="return show('Page2','Page1');"><center><font size="6">Tutorial: How to create this page</font></center></a> | |
</div> | |
<!-- MAP PART BEGINS HERE --> | |
<!-- HTML MAP TO INSERT HERE> | |
<!-- MAP PART ENDS HERE --> | |
<div id="Page2" style="display:none"> | |
<a href="#" onclick="return show('Page1','Page2');"><h1>Back</h1></a> | |
<center><h1>Tutorial: How to create this page</h1></center> | |
<center><h1>An Election Analysis</h1></center> | |
<center><h2>Tutorial here</h2></center> | |
<center><p>By D.W. and C.C </p></center> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment