Guest User

Untitled

a guest
Apr 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.07 KB | None | 0 0
  1. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  2. <!DOCTYPE html>
  3. <html>
  4.     <head>
  5.         <link rel="stylesheet" type="text/css" href="style.css">
  6.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  7.         <title>IFPWAFCAD - {placeholder}</title>
  8.     </head>
  9.     <body>
  10.         <table border="0">
  11.             <thead>
  12.                 <tr>
  13.                     <th colspan="2">{placeholder}</th>
  14.                 </tr>
  15.             </thead>
  16.             <tbody>
  17.                 <tr>
  18.                     <td><strong>Description: </strong></td>
  19.                     <td><span style="font-size:smaller; font-style:italic;">{placeholder}</span></td>
  20.                 </tr>
  21.                 <tr>
  22.                     <td><strong>Counselor: </strong></td>
  23.                     <td>{placeholder}
  24.                         <br>
  25.                         <span style="font-size:smaller; font-style:italic;">
  26.                             member since: {placeholder}</span>
  27.                     </td>
  28.                 </tr>
  29.                 <tr>
  30.                     <td><strong>Contact Details: </strong></td>
  31.                     <td><strong>email: </strong>
  32.                         <a href="mailto:{placeholder}">{placeholder}</a>
  33.                         <br><strong>phone: </strong>{placeholder}
  34.                     </td>
  35.                 </tr>
  36.             </tbody>
  37.         </table>
  38.     </body>
  39. </html>
  40.  
  41.  
  42. root {
  43.     display: block;
  44. }
  45.  
  46. body {
  47.     font-family: Verdana, Arial, sans-serif;
  48.     font-size: smaller;
  49.     padding: 50px;
  50.     color: #555;
  51. }
  52.  
  53. h1 {
  54.     text-align: left;
  55.     letter-spacing: 6px;
  56.     font-size: 1.4em;
  57.     color: #be7429;
  58.     font-weight: normal;
  59.     width: 450px;
  60. }
  61.  
  62. table {
  63.     width: 580px;
  64.     padding: 10px;
  65.     background-color: #c5e7e0;
  66. }
  67.  
  68. th {
  69.     text-align: left;
  70.     border-bottom: 1px solid;
  71. }
  72.  
  73. td {
  74.     padding: 10px;
  75. }
  76.  
  77. a:link {
  78.    color: #be7429;
  79.    font-weight: normal;
  80.    text-decoration: none;
  81. }
  82.  
  83. a:link:hover {
  84.    color: #be7429;
  85.    font-weight: normal;
  86.    text-decoration: underline;
  87. }
Add Comment
Please, Sign In to add comment