-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGlossary.html
More file actions
303 lines (290 loc) · 12.5 KB
/
Glossary.html
File metadata and controls
303 lines (290 loc) · 12.5 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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Newgreen Glossary</title>
<style type="text/css">
/* CSS begin */
* {box-sizing: border-box;}
body
{
font-family: "Lato", sans-serif;
}
/* Affects bar that contains tabs */
.tab
{
float: left;
border: 1px solid #ccc;
background-color: #f1f1f1;
width: 30%;
height: 100%;
}
/* Affects tab display */
.tab button
{
display: block;
background-color: inherit;
color: black;
padding: 22px 16px;
width: 100%;
border: none;
outline: none;
text-align: left;
cursor: pointer;
transition: 0.3s;
font-size: 17px;
}
.tab button:hover
{
background-color: #ddd;
}
.tab button.active
{
background-color: #ccc;
}
/* Affects content display */
.termData
{
float: left;
position: fixed;
right: 0;
padding: 0px 12px;
border: 1px solid #ccc;
width: 69.9%;
height: max-content;
}
/* This is the flexbox container that holds image buttons.*/
.button-container
{
display: flex;
border: 1px solid #ccc;
justify-content: center;
}
.button
{
margin: 15px;
}
/* CSS end */
</style>
</head>
<body>
<!-- HTML start -->
<img src="Design_Assets/logo.png" alt="Newgreen Logo" style="width:75px;height:75px;">
<div class="button-container">
<a href="Calendar.html" class="button">
<img src="Design_Assets/NewGreen_Button_Calendar.png" alt="Newgreen Calendar">
</a>
<a href="Calculator.html" class="button">
<img src="Design_Assets/NewGreen_Button_Calculator.png" alt="Newgreen Calculator">
</a>
<a href="Glossary.html" class="button">
<img src="Design_Assets/NewGreen_Button_Glossary.png" alt="Newgreen Glossary">
</a>
</div>
<div class="tab">
<button class="tabContent" onclick = "termView(event, 'amortization')" id="defaultOpen">Amortization</button>
<button class="tabContent" onclick = "termView(event, 'assets')">Assets</button>
<button class="tabContent" onclick = "termView(event, 'assetAllocation')">Asset Allocation</button>
<button class="tabContent" onclick = "termView(event, 'balanceSheet')">Balance Sheet</button>
<button class="tabContent" onclick = "termView(event, 'beneficiary')">Beneficiary</button>
<button class="tabContent" onclick = "termView(event, 'benefits')">Benefits</button>
<button class="tabContent" onclick = "termView(event, 'bonds')">Bonds</button>
<button class="tabContent" onclick = "termView(event, 'capitalGain')">Capital Gain</button>
<button class="tabContent" onclick = "termView(event, 'capitalLoss')">Capital Loss</button>
<button class="tabContent" onclick = "termView(event, 'capitalMarket')">Capital Market</button>
<button class="tabContent" onclick = "termView(event, 'cashFlow')">Cash Flow</button>
<button class="tabContent" onclick = "termView(event, 'cashFlowState')">Cash Flow Statement</button>
<button class="tabContent" onclick = "termView(event, 'compoundInt')">Compound Interest</button>
<button class="tabContent" onclick = "termView(event, 'credit')">Credit</button>
<button class="tabContent" onclick = "termView(event, 'deductible')">Deductible</button>
<button class="tabContent" onclick = "termView(event, 'depreciation')">Depreciation</button>
<button class="tabContent" onclick = "termView(event, 'downPayment')">Down Payment</button>
<button class="tabContent" onclick = "termView(event, 'ebitda')">EBITDA</button>
<button class="tabContent" onclick = "termView(event, 'equity')">Equity</button>
<button class="tabContent" onclick = "termView(event, 'exchangeRate')">Exchange Rate</button>
<button class="tabContent" onclick = "termView(event, 'incomeStatement')">Income Statement</button>
<button class="tabContent" onclick = "termView(event, 'liabilities')">Liabilities</button>
<button class="tabContent" onclick = "termView(event, 'liquity')">Liquity</button>
<button class="tabContent" onclick = "termView(event, 'loan')">Loan</button>
<button class="tabContent" onclick = "termView(event, 'netWorth')">Net Worth</button>
<button class="tabContent" onclick = "termView(event, 'profitMargin')">Profit Margin</button>
<button class="tabContent" onclick = "termView(event, 'roI')">Return on Investment</button>
<button class="tabContent" onclick = "termView(event, 'valuation')">Valuation</button>
<button class="tabContent" onclick = "termView(event, 'workingCapital')">Working Capital</button>
</div>
<div id="amortization" class="termData">
<h3>Amortization</h3>
<p>Spreading an intangible asset's value throughout its course. Intangible can be applied to copyrights, trademarks, or patents.</p>
</div>
<div id="assets" class="termData">
<h3>Assets</h3>
<p>
Items you can use to further give you value. There are many different types of assets such as: <br/>
Tangible Assets, which represent physical items like stocks, land, machinery, and anything that is physically present. <br/>
Intangible Assets, which represent nonphysical terms like copyrights, trademarks, and brands. <br/>
Current Assets, which are assets that can be exchanged for cash within a certain amount of time. <br/>
Fixed Assets, can't be exchanged for cash, but they are physical items that are owned and used to generate cash.
</p>
</div>
<div id="assetAllocation" class="termData">
<h3>Asset Allocation</h3>
<p>A technique where you spread cash across many investments and their classes, such as bonds, stocks, or outright money.</p>
</div>
<div id="balanceSheet" class="termData">
<h3>Balance Sheet</h3>
<p>
An equation statement where it shows the financial worth of a company. <br/>
The equation is: <br/>
Assets (Cash) = Liabilities + Equity
</p>
</div>
<div id="beneficiary" class="termData">
<h3>Beneficiary</h3>
<p>A person or entity receiving benefits.</p>
</div>
<div id="benefits" class="termData">
<h3>Benefits</h3>
<p>Receiving assets from another party that can be used with a particular service, such as grocery and medical services.</p>
</div>
<div id="bonds" class="termData">
<h3>Bonds</h3>
<p>Investments made in debt, where individuals let entities borrow their money to be paid back in full or interested payments.</p>
</div>
<div id="capitalGain" class="termData">
<h3>Capital Gain</h3>
<p>The increase in value an asset has that's larger than the price that was initially paid for.</p>
</div>
<div id="capitalLoss" class="termData">
<h3>Capital Loss</h3>
<p>The decrease in value an asset has that's larger than the price that was initially paid for.</p>
</div>
<div id="capitalMarket" class="termData">
<h3>Capital Market</h3>
<p>
A place where investors participate in trading with assets. <br/>
There are a lot of participants in the market, including: <br/>
Companies, who sells borrowed funds and stocks. <br/>
Mutual funds, where an investor handles the investments of many individuals.<br/>
Hedge funds, an investor that hedges, lowering risk by buying a stock and lowering the value of a similar stock.
</p>
</div>
<div id="cashFlow" class="termData">
<h3>Cash Flow</h3>
<p>The transactions of cash moving in and out of a company, either from business operations, investments, or billing/finances.</p>
</div>
<div id="cashFlowState" class="termData">
<h3>Cash Flow Statement</h3>
<p>The statement of the company's cash transactions at a point in time, recording the spending and gaining of cash.</p>
</div>
<div id="compoundInt" class="termData">
<h3>Compound Interest</h3>
<p>The gaining of money that is gained when depositing and keeping the money deposited over time.</p>
</div>
<div id="credit" class="termData">
<h3>Credit</h3>
<p>Contracted amount of money a borrower can take from a lender that has to be paid later.</p>
</div>
<div id="depreciation" class="termData">
<h3>Depreciation</h3>
<p>The decrease of an asset's value due to either not being used often or the overuse of it.</p>
</div>
<div id="deductible" class="termData">
<h3>Deductible</h3>
<p>The expense a person must pay for insurance before the insurance claim can cover the costs.</p>
</div>
<div id="downPayment" class="termData">
<h3>Down Payment</h3>
<p>It is the initial payment made through a credit purchase.</p>
</div>
<div id="ebitda" class="termData">
<h3>EBITDA</h3>
<p>
An acronym that means "Earnings Before Interest, Taxes, Depreciation, and Amortization".<br/>
It is commonly used to estimate a company's cash flow.
</p>
</div>
<div id="equity" class="termData">
<h3>Equity</h3>
<p>The value that belongs to owners after all liabilities and assets are accounted for.</p>
</div>
<div id="exchangeRate" class="termData">
<h3>Exchange Rate</h3>
<p>
The comparison of the value of money in one country to another country's. <br/>
An example would be comparing the USA's USD to Europe's Euros or Japan's Yen.
</p>
</div>
<div id="incomeStatement" class="termData">
<h3>Income Statement</h3>
<p>Dispalys the incomes and expenses of the business during a period of time.</p>
</div>
<div id="liabilities" class="termData">
<h3>Liabilities</h3>
<p>
An amount of money or assets that you owe others for, which can come in different forms: <br/>
Current Liabilities: Expenses that are due soon. <br/>
Long-term Liabilities: Expenses that are paid for over a period of time.
</p>
</div>
<div id="liquity" class="termData">
<h3>Liquity</h3>
<p>How quickly an asset can be sold for cash.</p>
</div>
<div id="loan" class="termData">
<h3>Loan</h3>
<p>Cash or an item that one entity borrows from another that needs to be repaid at some point or the amount that needs to be returned will increase.</p>
</div>
<div id="netWorth" class="termData">
<h3>Net Worth</h3>
<p>Overall state of financial health, by subtracting your asset value by what you owe.</p>
</div>
<div id="profitMargin" class="termData">
<h3>Profit Margin</h3>
<p>
Profitability from the income divided by the revenue generated or sales. This can be broken down into two types:<br/>
Gross Profit Margin: Profitability coming from a product or series of products. <br/>
Net Profit Margin: Value/profitability of the entire company.
</p>
</div>
<div id="roI" class="termData">
<h3>Return on Investment</h3>
<p>
The expected value of a project/activity when compared to the cost of investment, is usually represented by a percentage.<br/>
To get the percentage, the equation is: <br/>
Return on Investment = [(Income - Cost) / Cost ] * 100
</p>
</div>
<div id="valuation" class="termData">
<h3>Valuation</h3>
<p>Evaluating the present worth of an asset and/or company. This is used to decide whether to sell or merge companies or get outside investments.</p>
</div>
<div id="workingCapital" class="termData">
<h3>Working Capital</h3>
<p>The difference coming from a company's present assets and liabilities.</p>
</div>
<!-- HTML end -->
<script type="text/javascript">
// Javascript start
function termView(switchTab, termName)
{
var i, termData, tabContent;
termData = document.getElementsByClassName("termData");
for (i = 0; i < termData.length; i++)
{
termData[i].style.display = "none";
}
tabContent = document.getElementsByClassName("tabContent");
for (i = 0; i < tabContent.length; i++)
{
tabContent[i].className = tabContent[i].className.replace(" active", "");
}
document.getElementById(termName).style.display = "block";
switchTab.currentTarget.className += " active";
}
// Opens tab that has "defaultOpen" next to it.
document.getElementById("defaultOpen").click();
// Javascript end
</script>
</body>
</html>