Add files via upload

This commit is contained in:
2019-03-28 17:34:11 -04:00
committed by GitHub
parent 5a02f1a8ea
commit ef1cee22e6
2 changed files with 13 additions and 6 deletions
+8 -6
View File
@@ -1,14 +1,17 @@
<html style="height: 100%;">
<head>
<title>WebStrayer v.1 - Nicholas Pease</title>
<title>WebStrayer v.2 - Nicholas Pease</title>
<script src="script.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/png" href="https://i.imgur.com/O4AeOvI.png">
</head>
<body onload="changePDF('chapter1')" style="background-color: #585858;">
<body onload="changePDF('chapter 1')">
<table width="100%" height="100%">
<tr width="100%" height="100%">
<td width="10%">
<a href="javascript:changePDF('chapter1')">Chapter 1</a><br>
<td width="10%" id="toc" class="collapsable">
<h2><div id="chapter_name">Chapter 1</div></h2>
Table of Contents:
<a href="javascript:changePDF('chapter 1')">Chapter 1</a><br>
<a href="javascript:changePDF('chapter 2')">Chapter 2</a><br>
<a href="javascript:changePDF('chapter 3')">Chapter 3</a><br>
<a href="javascript:changePDF('chapter 4')">Chapter 4</a><br>
@@ -32,8 +35,7 @@
<a href="javascript:changePDF('chapter 22')">Chapter 22</a><br>
<a href="javascript:changePDF('chapter 23')">Chapter 23</a><br>
</td>
<td width="90%" height="100%">
<h1><div id="chapter_name" style="text-transform: capitalize;">Chapter 1</div></h1>
<td width="90%" height="100%" id="pdfcell">
<div id="pdfcontainer" height="100%" width="100%">
</div>
+5
View File
@@ -0,0 +1,5 @@
body {background-color: white;color: black;}
td {border: solid 1px white;}
#chapter_name {text-transform: capitalize;}
#toc {background-color: white;border: solid 1px black; color: black;}
#pdfcell {background-color: #525659;border: solid 1px black;}