You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 3, 2023. It is now read-only.
// Without changing any of the HTML or CSS, update the <section> tags so that they have white backgrounds.
function sum(a,b){
return a + b;
}
console.log(sum(12,1));
let sum2 = (a,b) => a+b;
console.log(sum2(2,3))
// Task 2
// Without changing any of the HTML or CSS, update the images on the page so that they are all centered.
// Hint: look at the CSS to see if there are any classes already written which you can use.
// Task 3
// Google the date of birth and death of each of the people on the page. Without changing any of the HTML or CSS, add this in a paragraph to the end of their <section>.