Untitled

 avatar
unknown
plain_text
10 months ago
1.5 kB
13
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Activity 1</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 20px;
    }

    h1 {
      text-align: center;
    }

    .container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
    }

    .column {
      border: 1px solid #ccc;
      padding: 15px;
      border-radius: 5px;
    }

    .column h2 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .user-experience h2 {
      color: darkblue;
    }

    .content h2 {
      color: darkgreen;
    }

    .grid-layout h2 {
      color: darkred;
    }
  </style>
</head>
<body>
  <h1>Activity 1 - Website Observation</h1>

  <div class="container">
    <div class="column user-experience">
      <h2>User Experience</h2>
      <p>
        The website is easy to navigate with a clean interface. 
        Buttons and links are responsive, making it simple for users to find what they need.
      </p>
    </div>

    <div class="column content">
      <h2>Content</h2>
      <p>
        The site provides clear information with organized sections. 
        Images and text are balanced, supporting the overall message effectively.
      </p>
    </div>

    <div class="column grid-layout">
      <h2>Grid Layout</h2>
      <p>
        The layout is structured with multiple sections arranged neatly. 
        Proper spacing and alignment make the website look professional and consistent.
      </p>
    </div>
  </div>
</body>
</html>
Editor is loading...
Leave a Comment