generate simple one page with styles
<!DOCTYPE html> <html> <head> <title>Hello world</title> <style> div{ border: 1px solid red; } .container{ margin: 100px; } </style> </head> <body> <div class="container" id="main">hello world</div> </body> </html>