Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. $ curl -i http://example.com
  2. HTTP/1.1 200 OK
  3. Cache-Control: max-age=604800
  4. Content-Type: text/html
  5. Date: Mon, 24 Jul 2017 20:54:21 GMT
  6. Etag: "359670651+gzip+ident"
  7. Expires: Mon, 31 Jul 2017 20:54:21 GMT
  8. Last-Modified: Fri, 09 Aug 2013 23:54:35 GMT
  9. Server: ECS (cpm/F9D5)
  10. Vary: Accept-Encoding
  11. X-Cache: HIT
  12. Content-Length: 1270
  13.  
  14. <!doctype html>
  15. <html>
  16. <head>
  17. <title>Example Domain</title>
  18.  
  19. <meta charset="utf-8" />
  20. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  21. <meta name="viewport" content="width=device-width, initial-scale=1" />
  22. <style type="text/css">
  23. body {
  24. background-color: #f0f0f2;
  25. margin: 0;
  26. padding: 0;
  27. font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  28.  
  29. }
  30. div {
  31. width: 600px;
  32. margin: 5em auto;
  33. padding: 50px;
  34. background-color: #fff;
  35. border-radius: 1em;
  36. }
  37. a:link, a:visited {
  38. color: #38488f;
  39. text-decoration: none;
  40. }
  41. @media (max-width: 700px) {
  42. body {
  43. background-color: #fff;
  44. }
  45. div {
  46. width: auto;
  47. margin: 0 auto;
  48. border-radius: 0;
  49. padding: 1em;
  50. }
  51. }
  52. </style>
  53. </head>
  54.  
  55. <body>
  56. <div>
  57. <h1>Example Domain</h1>
  58. <p>This domain is established to be used for illustrative examples in documents. You may use this
  59. domain in examples without prior coordination or asking for permission.</p>
  60. <p><a href="http://www.iana.org/domains/example">More information...</a></p>
  61. </div>
  62. </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement