Upgrade to Pro — share decks privately, control downloads, hide ads and more …

HOGC Web Developers Training 1

Avatar for Team HOGC Team HOGC
December 03, 2020

HOGC Web Developers Training 1

HOGC Web Developers Training

Avatar for Team HOGC

Team HOGC

December 03, 2020
Tweet

More Decks by Team HOGC

Other Decks in Programming

Transcript

  1. <h1>This is a H1 tag</h1> <h2>This is a H2 tag</h2>

    <h3>This is a H3 tag</h3> <h4>This is a H4 tag</h4> <h5>This is a H5 tag</h5> <h6>This is a H6 tag</h6>
  2. <ul></ul> - unordered list <ol></ol> - ordered list <li></li> -

    list item <ul> <li>Coffee</li> <li>Tea</li> </ul>
  3. <h1 style="color: red">This is a H1 tag</h1> <h2 style="color: green">This

    is a H2 tag</h2> <h3 style="color: gray">This is a H3 tag</h3> <h4 style="color: #232323">This is a H4 tag</h4> <h5 style="color: yellow">This is a H5 tag</h5> <h6 style="color: blue">This is a H6 tag</h6>
  4. <h1 style="color: red; background-color: lightblue;">This is a H1 tag</h1> <h2

    style="color: green; background-color: lightblue;">This is a H2 tag</h2> <h3 style="color: gray; background-color: lightblue;">This is a H3 tag</h3> <h4 style="color: #232323; background-color: lightblue;">This is a H4 tag</h4> <h5 style="color: yellow; background-color: lightblue;">This is a H5 tag</h5> <h6 style="color: blue; background-color: lightblue;">This is a H6 tag</h6>
  5. <div style="background-color: lightblue; padding: 25px">This is a div tag with

    padding</div> <div style="background-color: lightblue; margin: 25px">This is a div tag with margin</div> <div style="background-color: lightblue; border-width: 1px; border-color: red; border-style: solid;">This is a div tag with border</div>
  6. <div style="background-color: lightblue; border-width: 1px; border-color: red; border-style: solid;">This is

    a div tag with border</div> <div style="background-color: lightblue; border-width: 1px; border-color: red; border-style: solid; border-radius: 8px;">This is a div tag with border radius</div> <div style="background-color: lightblue; border-width: 2px; border-color: red; border-style: dashed; border-radius: 8px;">This is a div tag with dashed border</div>
  7. <p style="font-size: 64px">This is a paragraph tag with the size

    of 64px</p> <p style="font-size: 32px">This is a paragraph tag with the size of 32px</p> <p style="font-size: 32px; font-family: Helvetica">This is a paragraph tag with the font family Helvetica</p> <p style="font-size: 32px; font-family: Courier">This is a paragraph tag with the font family Courier</p>
  8. <div style="display: flex; flex-direction: row; background-color: lightblue;"> <p>Hello this is

    a text</p> <p>Hello this is a text #2</p> </div> <div style="display: flex; flex-direction: column; background-color: yellow;"> <p>Hello this is a text</p> <p>Hello this is a text #2</p> </div>
  9. <h1 class="bg-lightblue">This is a H1 tag</h1> <h2 class="bg-lightblue">This is a

    H2 tag</h2> <h3 class="bg-lightblue">This is a H3 tag</h3> <h4 class="bg-lightblue">This is a H4 tag</h4> <h5 class="bg-lightblue">This is a H5 tag</h5> <h6 class="bg-lightblue">This is a H6 tag</h6> <style> .bg-lightblue { background-color: lightblue; } </style>