-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathangleconversions.html
More file actions
177 lines (173 loc) · 6.45 KB
/
angleconversions.html
File metadata and controls
177 lines (173 loc) · 6.45 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!--
Contributor Details:
Name: mrunalvilas
mail:mrunalvilas@gmail.com
GitHub profile link : https://github.com/mrunalvilas
-->
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#6610f2" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" type="image/ico" href="../../favicon.ico" />
<title>Angle Conversion</title>
<link rel="stylesheet" href="angleconversion.css" />
<link
href="https://fonts.googleapis.com/css2?family=Varela&display=swap"
rel="stylesheet"
/>
<script src="angleconversion.js"></script>
</head>
<body
style="
background-color: rgba(173, 216, 230, 0.3);
font-family: 'Multi', sans-serif;
"
>
<!-- Navbar -->
<nav class="site-header sticky-top py-1 text-light">
<div class="container d-flex flex-column flex-md-row justify-content-between align-items-center" id="uNavbar">
<a class="py-2 text-light" href="../../index.html">
<i class="fa fa-cogs fa-2x" aria-hidden="true"></i>
</a>
<!-- Dynamic Navbar Elements -->
<div class="btn-group d-none d-md-block py-2">
<button type="button" class="btn btn-link text-light text-decoration-none"><a href="https://backgroundgradients.com/" class="text-light">Background Gradients</a> </button>
</div>
</div>
</nav>
<!-- Navbar End -->
<section
class="hero-section overflow-hidden py-3 mb-3 text-center text-md-left text-light"
>
<div class="container-xl">
<div class="row">
<div class="col-0">
<div class="hero-section__graphic position-relative m-auto">
<svg
class="hero-section__icon"
height="569pt"
viewBox="0 0 569 569.54905"
width="569pt"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M 240, 230
a 25,25 0 1,1 50,0
a 25,25 0 1,1 -50,0"
/>
<path
d="m396.3125 187.144531-208.902344 208.90325-13.429687-13.429687 208.90625-208.902310zm0 0"
/>
<path
d="M 290, 330
a 25,25 0 1,1 50,0
a 25,25 0 1,1 -50,0"
/>
</svg>
</div>
</div>
<div class="col align-self-center text-center">
<h1 class="text-white mb-2">Angle Conversion Tool</h1>
<p class="lead mb-4 text-white">
This is a Handy Tool to convert Angles from Degrees to Radians and
Back.
</p>
</div>
</div>
</div>
</section>
<section style="align-items: center; margin: 5%; justify-content: center">
<div class="align-items-center align-self-center text-center ct1">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="card bg-light mb-3 mx-auto" style="max-width: 18rem">
<div
class="card-header"
style="background-color: rgb(166, 168, 168)"
>
<i class="fa fa-angle-right mr-1"></i>
<b>Degree to Radians</b>
</div>
<div class="card-body">
<p>
<input
id="inputDegree"
type="number"
placeholder="Degree"
oninput="degangleConverter(this.value)"
onchange="degangleConverter(this.value)"
/>
</p>
<p class="answer">
In Radians: <span id="outputRadian"></span>
</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 col-xl-3">
<div class="card bg-light mb-3 mx-auto" style="max-width: 18rem">
<div
class="card-header"
style="background-color: rgb(166, 168, 168)"
>
<i class="fa fa-angle-right mr-1"></i>
<b>Radians to Degree</b>
</div>
<div class="card-body">
<p>
<input
id="inputRadian"
type="number"
placeholder="Radian"
oninput="radangleConverter(this.value)"
onchange="radangleConverter(this.value)"
/>
</p>
<p class="answer">
In Degrees: <span id="outputDegree"></span>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="border-top py-3 px-4">
<div class="row align-items-center">
<div class="col-md-6">
<p class="m-0">Copyright © 2020 codeezzi</p>
<p class="m-0">
Page Created by
<a href="https://github.com/mrunalvilas" target="_blank"
>Mrunal Padalkar</a
>
</p>
</div>
<div class="col-md-6 text-md-right">
<a href="#" class="text-dark">Terms of Use</a>
<span class="text-muted mx-2">|</span>
<a href="#" class="text-dark">Privacy Policy</a>
</div>
</div>
</footer>
<!-- Footer End -->
<!--JS Functions-->
<!---->
<!-- Global Scripts: Should load in all pages -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="../../assets/config/categories.js"></script>
<script src="../../assets/config/tools.js"></script>
<script src="../../assets/scripts/templates.js"></script>
<script src="../../assets/scripts/app.js"></script>
<!-- END of Global Scripts -->
</body>
</html>