Day 197

Working through the HTML section today...
#CodingPhase #TheCodingWay #365CodingPhaseChallenge

**********

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>All HTML Tags</title>
    <meta name="description" content="Free Web tutorials">
    <meta name="keywords" content="HTML, CSS, XML, JavaScript">
    <meta name="author" content="Sean Connelly">
    <meta name="viewport" content="width=device-width, initial-scale=1.0"> 
  </head>

  <body>

    <!-- Text tags -->
    <h1>THE PAGE!</h1>
    <h2>THE PAGE!</h2>
    <h3>THE PAGE!</h3>
    <h4>THE PAGE!</h4>
    <h5>THE PAGE!</h5>
    <h6>THE PAGE!</h6>

    <p> The <strong>Trade Commission</strong> is divided over the degree to which Mark Zuckerberg should be held liable for his company’s <em>mishandling</em> of users’ data.</p>
    <p> The case is being watched as a <span style="color: red;">litmus test</span> on how the U.S. government will police the country’s tech giants.   
    </p>

    <!-- List tags -->
    <ul>
      <li>Home</li>
      <li>
        <ol>
          <li>Honda</li>
          <li>BMW</li>
          <li>Mercedes</li>
        </ol>
      </li>
    </ul>

    <!-- Image tag -->
    <img src="https://i.pinimg.com/originals/d0/e1/39/d0e139570afa79e2d9525df162c39a43.jpg" alt="Vegeta from Dragon Ball Z" style="width: 100px;" />

    <!-- Container tags -->
    <header style="background: red; height: 100px; padding: 25px;">
      <nav style="background: white; height: 100px;">
        menu
      </nav>
    </header>
    <div style="background: blue; height: 500px;">
      Content Area
    </div>
    <footer style="background: green; height: 200px;">
      copyright
    </footer>

    <!-- Anchor tag -->
    <a href="http://www.google.com" target="new">Google site 1</a>
    <a href="http://www.google.com" target="_blank">Google site 2</a>
    <a href="http://www.google.com" target="new">
      <div>
        <h1>
          ANOTHER LINK TO GOOGLE
        </h1>
      </div>
    </a>

    <!-- Table tags -->
    <table>
      <tr>
        <th>First Name</th>
        <th>Last Name</th>
        <th>Total Balance</th>
      </tr>
      <tr>
        <td>Sean</td>
        <td>Connelly</td>
        <td>$109.00</td>
      </tr>
      <tr>
        <td>Mary</td>
        <td>Connelly</td>
        <td>$509.00</td>
      </tr>
      <tr>
        <td>Kieran</td>
        <td>Ethington</td>
        <td>$59.00</td>
      </tr>
    </table>

    <!-- HTML Forms -->
   
  </body>
</html>

Comments

Popular posts from this blog

Day 1

Day 365 + 1

Day 365 + 2