This example shows you how to make a button in HTML using CSS. There is a env variable, I threw that in for fun to personalize the buttons.
let user = process.env.USERNAME;
let bodyHtml = `
Button Example
Button Example
Making buttons in html and css is super simple!
I'll walk you through it.
Buttons are mostly done in CSS, if you go above there is comments in the css area.
`;
return {
statusCode: 200,
headers: {
'Content-Type': 'text/html',
},
body: bodyHtml,
};