Advertisement
Guest User

Untitled

a guest
Apr 24th, 2020
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. title = "The title"
  2. paragraph = "A paragraph"
  3.  
  4. page =
  5. "<html>
  6. <head>
  7. <style>
  8. h1{color:red;}
  9. p{color:blue;}
  10. </style>
  11. </head>
  12. <body>
  13. <h1>
  14. #{title}
  15. </h1>
  16. <p>
  17. #{paragraph}
  18. </p>
  19. </body>
  20. </html>
  21. "
  22.  
  23. crystal index.template > index.html
  24. firefox index.html
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement