-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (53 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" href="http://mmahan.net/favicon.ico" />
<script src="./pascal's.js"></script>
<title>Binomial coefficient</title>
</head>
<body>
<div id="editThis">
<!--slider is currently non-functional. I want to get it so that it actively modifies the font size(will definitely break higher levels of n)
<div class="slidecontainer">
<input type="range" min="1" max="12" value="12" class="slider" id="slider">
</div>
<div><output>font size: <div id='output'></div></output></div>
-->
<button onClick="main()">clicky clicky</button>
<!--this is where the triangle will render-->
<p id='here'></p>
</div>
<footer>
Pascal's Colorized © Michael Mahan 2017 | <a href="https://github.com/JohnnySn0w/PascalColored">GitHub</a>| <a href="http://www.mmahan.net/matt">Matthew's Projects</a> | <a href="http://www.mmahan.net"> WhatDo?</a>
</footer>
</body>
</html>
<style>
*
{
text-align: center;
font-family: "Monospace", Courier, monospace;
}
body
{
background-color: #f0f0f0;
}
footer
{
left: 0;
bottom: 0;
width: 100%;
z-index: 10;
height: auto;
display: block;
position: fixed;
text-align: center;
background-color: #efefff;
}
#editThis
{
position: relative;
margin-bottom: 20px;
}
</style>