JSFiddle - React, Tailwind, and code Playground

by Hassen Charef

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sports Information Page</title>
<style>
  body {
    font-family: Arial, sans-serif;
  }
  .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }
  .section {
    flex-basis: 50%;
  }
  h2 {
    font-size: 24px;
    text-align: center;
    margin: 10px 0;
  }
  p {
    text-align: justify;
    margin: 10px;
  }
  .icon {
    text-align: center;
    margin: 20px 0;
  }
  .empty-space {
    height: 100px; /* Adjust as needed */
    background-color: #f0f0f0; /* Placeholder color */
    margin: 20px 0;
  }
</style>
</head>
<body>
<div class="container">
  <!-- First Column -->
  <div class="section">
    <h2>About Basketball</h2>
    <p>Basketball is a team sport in which two teams, most commonly of five players each, opposing one another on a rectangular court, compete with the primary objective of shooting a basketball through the defender's hoop, while preventing the opposing team from shooting through their own hoop.</p>
    <div class="icon">🏊 Swim</div>
    <p>Swimming is an individual or team racing sport.</p>
    <div class="empty-space">empty space</div>
    <h2>About Baseball</h2>
    <p>Baseball is a bat-and-ball sport played between two teams of nine players each, taking turns batting and fielding.</p>
    <div class="empty-space">empty space</div>
  </div>
  <!-- Second Column -->
  <div class="section">
    <h2>About Basketball</h2>
    <p>Basketball is a team sport in which two teams, most commonly of five players each, opposing one another on a rectangular court, compete with the primary objective of shooting a basketball through the defender's hoop, while preventing the opposing team from shooting...