Advertisement
Guest User

Untitled

a guest
Dec 16th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.77 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE html
  3.     PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5.  
  6. <head>
  7.     <title>Service</title>
  8.     <style>
  9.         BODY {
  10.             color: #000000;
  11.             background-color: white;
  12.             font-family: Verdana;
  13.             margin-left: 0px;
  14.             margin-top: 0px;
  15.         }
  16.  
  17.         #content {
  18.             margin-left: 30px;
  19.             font-size: .70em;
  20.             padding-bottom: 2em;
  21.         }
  22.  
  23.         A:link {
  24.             color: #336699;
  25.             font-weight: bold;
  26.             text-decoration: underline;
  27.         }
  28.  
  29.         A:visited {
  30.             color: #6699cc;
  31.             font-weight: bold;
  32.             text-decoration: underline;
  33.         }
  34.  
  35.         A:active {
  36.             color: #336699;
  37.             font-weight: bold;
  38.             text-decoration: underline;
  39.         }
  40.  
  41.         .heading1 {
  42.             background-color: #003366;
  43.             border-bottom: #336699 6px solid;
  44.             color: #ffffff;
  45.             font-family: Tahoma;
  46.             font-size: 26px;
  47.             font-weight: normal;
  48.             margin: 0em 0em 10px -20px;
  49.             padding-bottom: 8px;
  50.             padding-left: 30px;
  51.             padding-top: 16px;
  52.         }
  53.  
  54.         pre {
  55.             font-size: small;
  56.             background-color: #e5e5cc;
  57.             padding: 5px;
  58.             font-family: Courier New;
  59.             margin-top: 0px;
  60.             border: 1px #f0f0e0 solid;
  61.             white-space: pre-wrap;
  62.             white-space: -pre-wrap;
  63.             word-wrap: break-word;
  64.         }
  65.  
  66.         table {
  67.             border-collapse: collapse;
  68.             border-spacing: 0px;
  69.             font-family: Verdana;
  70.         }
  71.  
  72.         table th {
  73.             border-right: 2px white solid;
  74.             border-bottom: 2px white solid;
  75.             font-weight: bold;
  76.             background-color: #cecf9c;
  77.         }
  78.  
  79.         table td {
  80.             border-right: 2px white solid;
  81.             border-bottom: 2px white solid;
  82.             background-color: #e5e5cc;
  83.         }
  84.     </style>
  85. </head>
  86.  
  87. <body>
  88.     <div id="content">
  89.         <p class="heading1">Service</p>
  90.         <p>Endpoint not found.</p>
  91.     </div>
  92. </body>
  93.  
  94. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement