example.com.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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,
  24. a:visited {
  25. color: #38488f;
  26. text-decoration: none;
  27. }
  28. @media(max-width: 700px) {
  29. div {
  30. margin: 0 auto;
  31. width: auto;
  32. }
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <div>
  38. <h1>Example Domain</h1>
  39. <p>This domain is for use in illustrative examples in documents. You may use this
  40. domain in literature without prior coordination or asking for permission.</p>
  41. <p>
  42. <a href="http://127.0.0.1:8080/static/iana.org.html">More information...</a>
  43. </p>
  44. </div>
  45. </body>
  46. </html>