Collage Information

<!DOCTYPE html>
<html>
  <head>
    <title>College Information</title>
    <style>
      .college-name {
        font-family: "Times New Roman", Times, serif;
        color: blue;
        background-color: yellow;
        font-size: 24px;
        padding: 10px;
      }
      .college-info {
        color: green;
        font-size: 18px;
      }
    </style>
  </head>
  <body>
    <div class="college-name">ABC College of Science and Technology</div>
    <div class="college-info">
      ABC College is located in XYZ city and offers undergraduate and
      postgraduate programs in Science, Technology, Engineering, and
      Mathematics. The college is affiliated with a reputed university and is
      known for its excellent faculty and infrastructure.
    </div>
  </body>
</html>