webpage.html 628 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <meta name="viewport" content="width=device-width; initial-scale=1"/>
  6. <meta name="robots" content="all"/>
  7. <style type="text/css">
  8. body
  9. {
  10. font-family: sans-serif;
  11. font-size: 14px;
  12. margin: 1em;
  13. }
  14. *:first-child
  15. {
  16. margin-top: 0;
  17. }
  18. code, pre
  19. {
  20. font-family: monospace;
  21. background: #F7F7F7;
  22. color: navy;
  23. }
  24. code
  25. {
  26. font-size: 85%;
  27. padding: 0.2em;
  28. }
  29. pre
  30. {
  31. margin-left: 3em;
  32. padding: 1em;
  33. }
  34. th
  35. {
  36. text-align: left;
  37. }
  38. hr
  39. {
  40. border: 0;
  41. border-bottom: 1px solid #BBB;
  42. }
  43. </style>
  44. </head>
  45. <body>
  46. <%= @body %>
  47. </body>
  48. </html>