Advertisement
Guest User

Untitled

a guest
Jan 17th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.38 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4.  
  5. </head>
  6.   <title>Page 2</title>
  7.   <style>
  8.  
  9.     table,tr,th,td {
  10.         border-style:solid;
  11.         border-width:1px;
  12.         border-color:black;
  13.         border-collapse:collapse;
  14.     }
  15.        
  16.  
  17.     ul li {
  18.           color:red;
  19.     }
  20.    
  21.     ol li{
  22.            color:gray;
  23.     }
  24.     #li3 {
  25.            background-color:yellow;
  26.     }
  27.    
  28.     .blue {
  29.           color:rgb(34,34,123);
  30.     }
  31.     li:hover {
  32.           color:blue;
  33.           background-color:white;
  34.           font-weight:bold;
  35.     }
  36.   </style>
  37. <body>
  38.   <p>
  39.   Hello HSE! It is page 2
  40.   </p>
  41.   <img src="hse.jpg" height="200" width="200"/>
  42.   <select>
  43.     <optgroup label="Numbers">
  44.       <option>1</option>
  45.       <option>2</option>
  46.       <option>3</option>
  47.       <option>4</option>
  48.     </optgroup>
  49.     <optgroup label="Letters">
  50.       <option>a</option>
  51.       <option>b</option>
  52.       <option>c</option>
  53.       <option>d</option>
  54.     </optgroup>
  55.   </select>
  56.   <table>
  57.   <tr>
  58.     <th>One</th><th>Two</th><th>Three</th>
  59.   </tr>
  60.    <tr>
  61.     <td>1</td><td>2</td><td>3</td>
  62.   </tr>
  63.   <tr>
  64.     <td>1</td><td>2</td><td>3</td>
  65.   </tr>
  66.    <tr>
  67.     <td>1</td><td>2</td><td>3</td>
  68.   </tr>
  69.   </table>
  70.     <div>
  71.     some random text
  72.     </div>
  73.   <ul>
  74.     <li style="color:green;background-color:pink;">hello</li>
  75.     <li>hello</li>
  76.     <li id="li3">hello</li>
  77.   </ul>
  78.   <ol>
  79.     <li>HSE</li>
  80.     <li class="blue">HSE</li>
  81.     <li class="blue">HSE</li>
  82.   </ol>
  83. </body>
  84. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement