-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (66 loc) · 3.41 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!--color pallette: https://paletton.com/#uid=13M0u0kllllaFw0g0qFqFg0w0aF-->
<!-- github test -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Calculus</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="dropdown.js"></script>
</head>
<body>
<div id="nav-placeholder"></div>
<script>
$(function(){
$("#nav-placeholder").load("nav.html");
});
</script>
<div class="main-page">
<div class="topics">
<h1 class="topics-header">Topics</h1>
<ul class="topics-list">
<!-- <li class="topics-item"><a href="./topics/limits-continuity.html">Limits and Continuity</a></li> -->
<li class="topics-item"><span class="caret">Derivatives</span>
<ul class="nested">
<li class="topics-item"><a href="./elements/derivative-definition.html">Definition of the Derivative</a>
<li class="topics-item"><a href="./elements/tangent-graph.html">Slope of Tangent Line</a>
</ul>
</li>
<li class="topics-item"><span class="caret">Integrals</span>
<ul class="nested">
<li class="topics-item"><a href="./elements/reimman1.html">Area Under the Curve</a>
<li class="topics-item"><a href="./elements/reimman2.html">Negative and Positive Area</a>
<li class="topics-item"><a href="./elements/arc-length.html">Arc Length of a Function</a>
<li class="topics-item"><a href="./elements/polar-area.html">Polar Area</a>
</ul>
</li>
<li class="topics-item"><span class="caret">3D Volumes and Vectors</span>
<ul class="nested">
<li class="topics-item"><a href="./elements/rotate-graph.html">Graph of square root rotated about x-axis</a>
<li class="topics-item"><a href="./elements/3Dvector.html">3D Vectors</a>
</ul>
</li>
<li class="topics-item"><span class="caret">Differential Equations</span>
<ul class="nested">
<li class="topics-item"><a href="./elements/eulers-method.html">Euler's Method</a>
<!-- <li class="topics-item"><a href="./elements/3Dvector.html">3D Vectors</a> -->
</ul>
</li>
<!-- <li class="topics-item"><a href="#">Integrals</a></li>
<li class="topics-item"><a href="#">Analyzing functions</a></li>
<li class="topics-item"><a href="#">Sequences & Series</a></li>
<li class="topics-item"><a href="#">Reiman Sum</a></li> -->
</ul>
</div>
</div>
<div class="padding">
</div>
<hr>
<footer>
<p>Carson Harrell</p>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</footer>
</body>
</html>