-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrig.html
68 lines (57 loc) · 1.97 KB
/
trig.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>All-In-1 Calc</title>
<!-- Master CSS File & Animation Library CSS File -->
<link rel="stylesheet" type="text/css" href="CSS/styles.css">
<link rel="stylesheet" type="text/css" href="CSS/styles-trig.css">
<!-- ANIMATE.CSS???? -->
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Quantico:400,400i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Play" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<!-- jQuery -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<body>
<script src="script.js" ></script>
<header>
<ul id="first-header">
<li>
<img class="img-header-calc" id="first-calc" src="images/calculator.png">
</li>
<li id="title">
All-in-1 Calc
</li>
<li>
<img class="img-header-calc" id="second-calc" src="images/calculator.png">
</li>
</ul>
<ul id="second-header">
<li id="header-2d">
<a href="index.html">2D Shapes</a>
</li>
<li id="header-3d">
<a href="3d-shapes.html">3D Shapes</a>
</li>
<li id="header-trig">
<a href="trig.html">Trignometry</a>
</li>
</ul>
</header>
<div id="shapes-3d">
<div id="full-title-trig">
<img src="images/dbl-line.png" class="dbl-line" id="second-1">
<div id="title-trig">Trignometry</div>
<img src="images/dbl-line.png" class="dbl-line" id="second-2">
</div>
<div id="temp">
<center>This part of the Web Page is still under development</center>
</div>
<footer>
<div id="footer-text">© 2018 | All Rights Reserved</div>
</footer>
</body>
</html>