.NET W2

Cards (13)

  •   background 
    Indicates the background image of the table.  filename (path could be included) 
    ex: <table background="background.jpg"></table>
  • bgcolor
    Indicates the background color of the table assigned name or hexadecimal 
     ex: <table bgcolor="green"></table>
  •    bordercolor
    Indicates the color of the border assigned name or hexadecimal 
     ex: <table bordercolor="green"></table>      
  •  width
    Indicates the width of the table in pixels or number of pixels or number 
     ex: <table width="100"></table>
  •  nowrap  
    Inhibit word wrapping in the cell             
                                  ex: <td nowrap></td>
  •  Background Color
            - The CSS background-color property defines the background color for an HTML element.
          *Example
          Set the background color for a page to powderblue:
          <body style="background-color: powderblue;"></body>
  • Text Color
            - The CSS color property defines the text color for an HTML element:
          *Example
    <p style="color:green;"> This is a paragraph.</p>
  •   Fonts
            - The CSS font-family property defines the font to be used for an HTML element:
          *Example
          <p style="font-family: courier;"> This is a paragraph.</p>
  •  Text Size
            - The CSS font-size property defines the text size for an HTML element:
          *Example
          <p style="font-size: 100%;"> This is a paragraph.</p>
  • Text Alignment
            - The CSS text-align property defines the horizontal text alignment for an HTML element:
          *Example
          <p style="text-align: center;"> Centered paragraph.</p>
  •     <!-- VIDEO ATTRIBUTES
                autoplay, controls, height, loop, muted, width
                
           Poster - specifies an image to be shown while the video is downloading, or until the user hits the play button.
           Preload -  specifies if and how the author thinks that the video should be loaded when the page loads.
  •  <colgroup
                 tag specifies a group of one or more columns in a table for formatting.

    <col> 
                 tag specifies column properties for each column within a <colgroup> element.
  •   <span>
                 specifies how many columns that get the style
                 <thead> 
                 tag is used to group header content in an HTML table.
                 <tbody> 
                 tag is used to group the body content in an HTML table.
                 <tfoot> 
                 tag is used to group footer content in an HTML table.