mirror of
https://github.com/nhammer514/textfiles-politics.git
synced 2024-10-01 01:15:38 -04:00
methods page added for SVG
This commit is contained in:
parent
8838b667df
commit
c9e1519fb6
@ -37,7 +37,7 @@
|
||||
<a href="fulltext.html"><div class="button">Fulltext</div></a>
|
||||
<a href="analysis.html"><div class="button">Analysis</div></a>
|
||||
<a href="gallery.html"><div class="button">Gallery</div></a>
|
||||
<a href="bio.html"><div class="button">Biography</div></a>
|
||||
<a href="methods.html"><div class="button">Methods</div></a>
|
||||
<a href="about.html"><div class="button">About</div></a>
|
||||
<a href="GitHub.html"><div class="button">GitHub <img
|
||||
alt="github icon"
|
||||
|
@ -12,7 +12,7 @@
|
||||
<a href="fulltext.html"><div class="button">Fulltext</div></a>
|
||||
<a href="analysis.html"><div class="button">Analysis</div></a>
|
||||
<a href="gallery.html"><div class="button">Gallery</div></a>
|
||||
<a href="bio.html"><div class="button">Biography</div></a>
|
||||
<a href="methods.html"><div class="button">Methods</div></a>
|
||||
<a href="about.html"><div class="button">About</div></a>
|
||||
<a href="GitHub.html"><div class="button">GitHub <img alt="github icon" src="https://logos-download.com/wp-content/uploads/2016/09/GitHub_logo.png" width="15"/></div></a>
|
||||
|
||||
|
@ -35,7 +35,7 @@
|
||||
<a href="fulltext.html"><div class="button">Fulltext</div></a>
|
||||
<a href="analysis.html"><div class="button">Analysis</div></a>
|
||||
<a href="gallery.html"><div class="button">Gallery</div></a>
|
||||
<a href="bio.html"><div class="button">Biography</div></a>
|
||||
<a href="methods.html.html"><div class="button">Methods</div></a>
|
||||
<a href="about.html"><div class="button">About</div></a>
|
||||
<a href="GitHub.html"><div class="button">GitHub <img
|
||||
alt="github icon"
|
||||
|
@ -37,7 +37,7 @@
|
||||
<a href="fulltext.html"><div class="button">Fulltext</div></a>
|
||||
<a href="analysis.html"><div class="button">Analysis</div></a>
|
||||
<a href="gallery.html"><div class="button">Gallery</div></a>
|
||||
<a href="bio.html"><div class="button">Biography</div></a>
|
||||
<a href="methods.html"><div class="button">Methods</div></a>
|
||||
<a href="about.html"><div class="button">About</div></a>
|
||||
<a href="GitHub.html"><div class="button">GitHub <img
|
||||
alt="github icon"
|
||||
|
@ -11,7 +11,7 @@
|
||||
<a href="fulltext.html"><div class="button">Fulltext</div></a>
|
||||
<a href="analysis.html"><div class="button">Analysis</div></a>
|
||||
<a href="gallery.html"><div class="button">Gallery</div></a>
|
||||
<a href="bio.html"><div class="button">Biography</div></a>
|
||||
<a href="methods.html"><div class="button">Methods</div></a>
|
||||
<a href="about.html"><div class="button">About</div></a>
|
||||
<a href="GitHub.html"><div class="button">GitHub <img alt="github icon" src="https://logos-download.com/wp-content/uploads/2016/09/GitHub_logo.png" width="15"/></div></a>
|
||||
|
||||
|
48
docs/methods.html
Normal file
48
docs/methods.html
Normal file
@ -0,0 +1,48 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Our Methods and what we Discovered</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="CSSstyle.css">
|
||||
</head>
|
||||
<body><button onclick="topFunction()" id="to-top" title="Go to top"><img alt="up arrow"
|
||||
src="https://cdn.onlinewebfonts.com/svg/img_231938.png" width="30" /></button>
|
||||
<script>
|
||||
// Get the button
|
||||
let mybutton = document.getElementById("to-top");
|
||||
|
||||
// When the user scrolls down 20px from the top of the document, show the button
|
||||
window.onscroll = function () {
|
||||
scrollFunction()
|
||||
};
|
||||
|
||||
function scrollFunction() {
|
||||
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
|
||||
mybutton.style.display = "block";
|
||||
} else {
|
||||
mybutton.style.display = "none";
|
||||
}
|
||||
}
|
||||
|
||||
// When the user clicks on the button, scroll to the top of the document
|
||||
function topFunction() {
|
||||
document.body.scrollTop = 0;
|
||||
document.documentElement.scrollTop = 0;
|
||||
}</script>
|
||||
<h1 id="title-index">Politics-Conspiracies (Analysis)</h1>
|
||||
<nav id="menu">
|
||||
<a href="index.html"><div class="button">Home</div></a>
|
||||
<a href="fulltext.html"><div class="button">Fulltext</div></a>
|
||||
<a href="analysis.html"><div class="button">Analysis</div></a>
|
||||
<a href="gallery.html"><div class="button">Gallery</div></a>
|
||||
<a href="methods.html"><div class="button">Methods</div></a>
|
||||
<a href="about.html"><div class="button">About</div></a>
|
||||
<a href="GitHub.html"><div class="button">GitHub <img
|
||||
alt="github icon"
|
||||
src="https://logos-download.com/wp-content/uploads/2016/09/GitHub_logo.png"
|
||||
width="15" /></div></a>
|
||||
</nav>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user