example.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Example Domain</title>
  5. <meta charset="utf-8">
  6. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <style type="text/css">
  9. body {
  10. background-color: #f0f0f2;
  11. margin: 0;
  12. padding: 0;
  13. font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  14. }
  15. div {
  16. width: 600px;
  17. margin: 5em auto;
  18. padding: 2em;
  19. background-color: #fdfdff;
  20. border-radius: 0.5em;
  21. box-shadow: 2px 3px 7px 2px rgba(0,0,0,0.02);
  22. }
  23. a:link, a:visited {
  24. color: #38488f;
  25. text-decoration: none;
  26. }
  27. @media (max-width: 700px) {
  28. div {
  29. margin: 0 auto;
  30. width: auto;
  31. }
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <div>
  37. <h1>Example Domain</h1>
  38. <p>This domain is for use in illustrative examples in documents. You may use this domain in literature without prior coordination or asking for permission.</p>
  39. <p><a href="https://www.iana.org/domains/example">More information...</a></p>
  40. <p><a href="https://www.iana.org/domains/example111">More information111...</a></p>
  41. </div>
  42. </body>
  43. </html>