A sample project for this tutorial will be a simple HTML page with two input fields and one button and a simple JS function that summarize number from input fields when button is clicked. The full code is available in the repository.
index.html
```
<!DOCTYPE html>
<html>
<head>
<metacharset="utf-8">
<title>JS Frontend CI Tutorial</title>
<script src="js/main.js"></script>
</head>
<body>
<div>
<labelfor="input_number_1">First number:</label>
<inputid="input_number_1"><br>
<labelfor="input_number_2">Second number:</label>
<inputid="input_number_2"><br>
<buttonid="sum_button">Sum</button>
</div>
<div>Result is: <spanid="sum_result"></span></div>