JSFiddle - React, Tailwind, and code Playground

by Abhishek27Sharma

HTML

<html>
  <head>
    <title>HTML</title>
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <div class="bodycontainer">
      <header>
        <div class="logocontainer">
          <a href="#"
            ><img
              src="https://www.logodesign.net/assets/images/new-ui/logo-category-abstract-logo.png"
              alt="Logo"
          /></a>
        </div>
        <div class="navcontainer">
          <ul>
            <a href="#"><li>Home</li></a>
            <a href="#"><li>About us</li></a>
            <a href="#"><li>Contact us</li></a>
          </ul>
        </div>
      </header>

      <section class="content">
        <div class="banner">
          <img
            src="https://c0.wallpaperflare.com/preview/804/266/417/italy-bologna-minimal-machine.jpg"
            alt=""
            width="800px"
            height="500px"
          />
          <h2>Software Developer</h2>
        </div>
        <div class="text">
          <p>
            The difference between Front-End and Back-End is that Front-End
            refers to how a web page looks, while back-end refers to how it
            works. You can think of Front-End as client-side and Back-End as
            server-side.
          </p>
        </div>

        <div class="holder">
          <h2>Languages in Forntend and Backend</h2>
          <table>
            <tr>
              <th>Language</th>
              <th>Founded by</th>
              <th>Founded year</th>
            </tr>
            <tr>
              <td><a href="#">HTML</a></td>
              <td><a href="#">Tim Berners-Lee</a></td>
              <td>1993</td>
            </tr>
            <tr>
              <td><a href="#">CSS</a></td>
              <td><a href="#">HÃ¥kon Wium Lie</a></td>
              <td>1994</td>
            </tr>
            <tr>
              <td><a href="#">JavaScript</a></td>
              <td><a href="#">Brendan Eich</a></td>
              <td>1995</td>
            </tr>
          ...