Untitled

mail@pastecode.io avatar
unknown
plain_text
15 days ago
2.1 kB
1
Indexable
Never
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>About</title>
    <link rel="stylesheet" href="./vendor/normalize.css" />
    <link rel="stylesheet" href="./styles/style.css" />
  </head>

  <body class="page">
    <header class="header">
      <img
        src="./images/logo-dark.svg"
        alt="TripleTen logo"
        class="logo logo_theme_light"
      />
      <img
        src="./images/logo-light.svg"
        alt="TripleTen logo"
        class="logo logo_theme_dark"
      />
      <nav class="menu">
        <a href="index.html" class="menu__link">Homepage</a>
        <a href="about.html" class="menu__link">About</a>
        <a href="contacts.html" class="menu__link">Contact us</a>
      </nav>
    </header>
    <main class="content">
      <h1 class="main-title">TripleTen will help you to get a new job</h1>
      <p class="main-subtitle">
        TripleTen is launching a new educational platform for future web
        developers, analysts, designers, and other professions in the
        ever-growing tech industry.
      </p>
      <h2 class="content__title">You'll learn through practice</h2>
      <p class="content__paragraph">
        Every profession is based on a set of skills. We'll give you the
        knowledge you need to apply to gain these skills.
      </p>
      <h2 class="content__title">We'll support and inspire you</h2>
      <p class="content__paragraph">
        Our tutors will guide you through the course all the way to the finish
        line.
      </p>
      <h2 class="content__title">Our lessons are grounded in reality</h2>
      <p class="content__paragraph">
        We don't just throw random tech terms your way and our examples come
        from real-life projects that show you what it's really like to work in
        the industry.
      </p>
    </main>
    <footer class="footer">
      <p class="footer__copyright">© TripleTen</p>
    </footer>
  </body>
</html>
Leave a Comment