Arithemetic
Algebra
Statistics
Course highlights:
- 5 classes a week of 1 hour each;
- 3 days Maths;
- 2 days Science;
- Regular tests and assignments;
- Live online classes
window.addEventListener("load", function() {
const form = document.getElementById('my-form');
form.addEventListener("submit", function(e) {
e.preventDefault();
const data = new FormData(form);
const action = e.target.action;
fetch(action, {
method: 'POST',
body: data,
})
.then(() => {
alert("Success!");
})
});
});