Go to main content
Gå till KtH intranätGå till KtH intranät

Logotype (in header)

Make clear to users that they are within KTH

When to use this component

When not to use this component

Most of the times, the logotype should be inside a link to either kth.se, intranet or student web.

In some cases, you should not do it. For example:

How it works

Use this if the logotype does not include a link anywhere.

Code
<figure class="kth-header__logotype">
  <img
    alt="KTH"
    srcset="
      <ASSETS_DIRECTORY>/kth-logotype-64.webp,
      <ASSETS_DIRECTORY>/kth-logotype-64@2x.webp 2x,
      <ASSETS_DIRECTORY>/kth-logotype-64@3x.webp 3x
    "
    src="<ASSETS_DIRECTORY>/kth-logotype-64.png"
  />
</figure>
@use "@kth/style/scss/components/header.scss";

Use this if the logotype does inlcude a link.

Code
<a class="kth-header__logotype">
  <figure>
    <img
      alt="KTH"
      srcset="
        <ASSETS_DIRECTORY>/kth-logotype-64.webp,
        <ASSETS_DIRECTORY>/kth-logotype-64@2x.webp 2x,
        <ASSETS_DIRECTORY>/kth-logotype-64@3x.webp 3x
      "
      src="<ASSETS_DIRECTORY>/kth-logotype-64.png"
    />
  </figure>
</a>
@use "@kth/style/scss/components/header.scss";

Read more