Using HTML and JS this snippet makes a website which has 2 textboxes and buttons that will update the text and color of the title! Just click run to start
let body = `
Title!
Color uses HEX codes or CSS color names which are listed Here
`;
return {
statusCode: 200,
headers: {'Content-Type': 'text/html'},
body: Buffer.from(body),
};