forked from mtw16-FSU/Advanced-Math-Calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtriangles.html
More file actions
40 lines (35 loc) · 1.38 KB
/
triangles.html
File metadata and controls
40 lines (35 loc) · 1.38 KB
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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Concert+One&display=swap" rel="stylesheet">
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML' async>
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
{% load static %}
<link href="{% static 'css/main.css' %}" rel="stylesheet">
<script type="text/javascript" src="{% static 'scripts/init.js' %}"></script>
<script type="text/javascript" src="{% static 'scripts/latex.js' %}"></script>
</head>
<body onload="initAlt('triangles-menu'); document.getElementById('geometry-menu').nextElementSibling.style.display = 'block'" id="body">
<div class="main">
{% include "header.html" %}
{% include "menu.html" %}
<div class="main-section">
<h2>Triangles</h2>
<p>
See the following:
</p>
<ul>
<li><a href="/geometry/triangles/missingLen"> Solving for Missing Side Length</a></li>
<li><a href="/geometry/triangles/missingAng"> Solve for Missing Angle</a></li>
<li><a href="/geometry/triangles/compareTri"> Compare 2 Triangles</a></li>
</ul>
</div>
<div style="clear:both;">
</div>
</div>
<br />
<br />
</body>
<html>