Page MenuHomec4science

index.html
No OneTemporary

File Metadata

Created
Fri, May 24, 03:53

index.html

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
<title>Cost Calculator</title>
<link rel="icon" href="./icons/costcalc.png">
<!-- Load React. -->
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
<script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.0/JSXTransformer.js"></script>
<!--Load Bootstrap-->
<script src="js/jquery-3.3.1.js"></script>
<script src="js/bootstrap.bundle.js"></script>
<link rel="stylesheet" href="css/bootstrap.css">
<!--Load Cost calc engine-->
<link rel="stylesheet" href="css/costcalc.css">
<script type="text/jsx" src="js/costcalc_main.js"></script>
<script src="js/costcal_export.js"></script>
<!--Load cost calc data-->
<script src="js/data.js"></script>
<!--<script>-->
<!--$(window).bind('beforeunload', function(){-->
<!--return '>>>>>Before You Go<<<<<<<< \n Your data will be lost are you sure ?';-->
<!--});-->
<!--</script>-->
</head>
<body>
<div class="jumbotron jumbotron-fluid">
<div class="container">
<div class="row">
<div class="col-auto">
<img src="./icons/costcalc.png" width="100">
</div>
<div class="col-auto">
<h1 class="display-4"> Cost Calculator for Data Management</h1>
</div>
<div class="col">
<p class="lead">
Welcome to our cost calculator this tool will help researcher/professor to have an estimate of the cost of managing, storing and publishing data.
</p>
<p className="lead">
Many providers are included in the service and you will be able to calculate a cost based on your needs. Total cost is calculated dynamically based on your inputs.
</p>
<p className="lead">
We hope you will enjoy this tool and it will be useful for you.
</p>
</div>
</div>
</div>
</div>
<div id="root">
<!-- This div's content will be managed by React. -->
</div>
</body>
</html>

Event Timeline