Skip to content

Instantly share code, notes, and snippets.

@joshparkerj
Created June 9, 2024 03:59
Show Gist options
  • Save joshparkerj/09d0c3852b6ebd8f549b6db3eb871f6c to your computer and use it in GitHub Desktop.
Save joshparkerj/09d0c3852b6ebd8f549b6db3eb871f6c to your computer and use it in GitHub Desktop.
logo
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Danfo&family=Jacquard+12&family=Poetsen+One&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Danfo&family=Jacquard+12&family=Poetsen+One&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Indie+Flower&family=Shadows+Into+Light&family=Zeyada&display=swap"
rel="stylesheet"
/>
<style>
.one {
font-family: "Poetsen One", sans-serif;
font-weight: 400;
font-style: normal;
}
.two {
font-family: "Danfo", serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-variation-settings: "ELSH" 0;
}
.three {
font-family: "Jacquard 12", system-ui;
font-weight: 400;
font-style: normal;
}
.four {
font-family: "Zeyada", cursive;
font-weight: 400;
font-style: normal;
}
.five {
font-family: "Indie Flower", cursive;
font-weight: 400;
font-style: normal;
}
.six {
font-family: "Shadows Into Light", cursive;
font-weight: 400;
font-style: normal;
}
span.six {
transform: translateX(-63px) translateY(-6px) rotate(5deg);
display: inline-block;
}
h1 {
position: fixed;
top: 0;
left: 0;
align-content: center;
margin: auto;
width: fit-content;
height: 50%;
font-size: 24em;
color: chartreuse;
letter-spacing: -3.4em;
filter: url(#fatter-text);
text-shadow: 2.8em 1.6em 1.2em magenta;
}
body > main {
position: fixed;
inset: 0;
background-image: linear-gradient(to top, #ff7f00 0%, #007fff 100%);
margin: 0;
background-size: cover;
background-position: center;
}
</style>
</head>
<body>
<main>
<h1>
<span class="four">S</span>
<span class="five">I</span>
<span class="six">T</span>
</h1>
</main>
<svg width="0">
<filter id="fatter-text">
<feMorphology operator="dilate" radius="12 2"></feMorphology>
</filter>
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment