Advertisement
Shavit

HTMLex3

Sep 23rd, 2014
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.81 KB | None | 0 0
  1. <!--Shavit Borisov-->
  2. <!--23.9.14-->
  3. <!--http://pastebin.com/Z9zPGNtU-->
  4.  
  5. <!DOCTYPE html>
  6. <html style = "width: 100%; height: 100%">
  7.     <head>
  8.         <meta charset="UTF-8">
  9.         <title>Exercise 3</title>
  10.     </head>
  11.     <body style = "width: 97%; height: 95%">
  12.         <p id = "top">Table 3 demonstrates the use of the TABLE tag for the layout of the page elements</p>
  13.         <hr>
  14.         <table style = "width: 100%; height: 95%; direction: rtl; text-align: right">
  15.             <tr style = "background-color: #CC99FF">
  16.                 <th colspan = "2"><h1>הכותרת הראשית של הדף</h1></th>
  17.             </tr>
  18.             <tr style = "height: 80%">
  19.                 <td style = "vertical-align: top; background-color: #FFCCFF">
  20.                     <br>
  21.                     <span style = "font-weight: bold">התפריט הראשי</span>
  22.                     <br><br>
  23.                     <a href = "#top" style = "text-decoration: none">ראשי</a>
  24.                     <br>
  25.                     <a href = "#top" style = "text-decoration: none">רישום</a>
  26.                     <br>
  27.                     <a href = "#top" style = "text-decoration: none">כניסה</a>
  28.                     <br>
  29.                     <a href = "#top" style = "text-decoration: none">אודות</a>
  30.                     <br>
  31.                 </td>
  32.                 <td style = "vertical-align: top; background-color: #EEEEEE"><br><span style = "font-weight: bold">איזור שבו מוצגים התכנים המרכזיים של הדף - טקסטים, טבלאות, גרפים ועוד</span>
  33.                 <br><br><br><br>
  34.                 <table style = "table-layout: fixed; width: 365px" border = "1">
  35.                 <caption style = "caption-side: bottom">דוגמא לטבלה בתוך תא של טבלה אחרת</caption>
  36.                     <tr>
  37.                         <td>תא 1</td>
  38.                         <td>תא 2</td>
  39.                         <td>תא 3</td>
  40.                     </tr>
  41.                 </table>
  42.                 </td>
  43.             </tr>
  44.             <tr>
  45.                 <td colspan = "2" style = "background-color: #CC99FF; text-align: center">זכויות יוצרים, דרכי התקשרות</td>
  46.             </tr>
  47.         </table>
  48.     </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement