Get the empty frame for creating a Bootstrap 4 website in this snippet and get started becoming a pro web developer!
//Inside let bodyHtml is the code to start building a website with Bootstrap 4 - copy it into a HTML doc and try it out!
//The site will currently display as an empty white page - add some HTML to the body to sta rt seeing page content!
let bodyHtml = `
My Bootstrap 4 Website
`;
//This will display the page!
return {
statusCode: 200,
headers: {
'Content-Type': 'text/html',
},
body: bodyHtml,
};