sample.html 486 B

1234567891011121314151617181920212223242526272829303132333435
  1. <pre id="code" data-lang="text/css" style="width:500px;">
  2. /* Some example CSS */
  3. @import url("something.css");
  4. body {
  5. margin: 0;
  6. padding: 3em 6em;
  7. font-family: tahoma, arial, sans-serif;
  8. color: #000;
  9. }
  10. #navigation a {
  11. font-weight: bold;
  12. text-decoration: none !important;
  13. }
  14. h1 {
  15. font-size: 2.5em;
  16. }
  17. h2 {
  18. font-size: 1.7em;
  19. }
  20. h1:before, h2:before {
  21. content: "some contents";
  22. }
  23. code {
  24. font-family: courier, monospace;
  25. font-size: 80%;
  26. color: #418A8A;
  27. }
  28. </pre>