Advertisement
shawonbd

3.css

Aug 17th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>css</title>
  5.     <link rel="stylesheet" href="style.css">
  6.     <style>
  7.  
  8. b { font-size:17px;
  9. background-color:#5f5f5f;
  10. color:#f1f1f1;
  11. }
  12.  
  13.     </style>
  14.  
  15.  </head>
  16.    
  17.     <b>This text is bold</b>
  18.      
  19. <table style="width:100%" border="1">
  20.   <tr>
  21.     <th>CSE</th>
  22.     <th>BBA</th>
  23.     <th>ENGLISH</th>
  24.   </tr>
  25.   <tr>
  26.     <td>Sec A</td>
  27.     <td>Sec A</td>
  28.     <td>Sec A</td>
  29.   </tr>
  30.   <tr>
  31.       <td>Sec B</td>
  32.     <td>Sec B</td>
  33.     <td>Sec B</td>
  34.   </tr>
  35.   <tr>
  36.        <td>Sec C</td>
  37.     <td>Sec C</td>
  38.     <td>Sec C</td>
  39.   </tr>
  40.   <tr>
  41.    <td>Sec D</td>
  42.     <td>Sec D</td>
  43.     <td>Sec D</td>
  44.  
  45.   </tr>
  46.  
  47.  
  48. </table>
  49.  
  50.    
  51. <p>  This is link  <a href="#">Click Here</a> </p>
  52.    
  53.     <!---- externel style.css--->
  54.    
  55.    body{
  56.     font-family:Verdana,
  57.     sans-serif;
  58.     font-size:15px;
  59.     line-height:1.5}
  60.    
  61.  
  62.      <!---- externel css--->
  63.    
  64.    
  65.    
  66.    
  67. </body>
  68. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement