34 строки
974 B
HTML
34 строки
974 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Essential JS 2 - Loan calculator</title>
|
|
<meta charset="utf-8" />
|
|
<base href="./" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width,initial-scale=1,user-scalable=no"
|
|
/>
|
|
<meta name="description" content="Essential JS 2 - Loan calculator" />
|
|
<meta name="author" content="Syncfusion" />
|
|
<link rel="shortcut icon" href="favicon.ico" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<h2 class="header-style">Loan Calculator</h2>
|
|
<div class="container main-content" id="content-area"></div>
|
|
<script>
|
|
function formatCurrency(value) {
|
|
const formatter = new Intl.NumberFormat('en-US', {
|
|
style: 'currency',
|
|
currency: 'USD',
|
|
minimumFractionDigits: 0,
|
|
});
|
|
return formatter.format(value);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|