<!--.:◂◀▸v▶¤◀v∫∫v▶¤◀v∫∫‡####‡‡‡‡###‡‡‡###‡‡####‡∫∫v▶¤◀v∫∫v▶¤◀v◂▶▸:.
| |
| Filename : EH_text-stroke.html |
| Label : Basics |
| Author : Elias Hübner |
| Size : 1.149 bytes (4 KB on disk) |
| Created : 15. February 2024 at 16:44 |
| |
::◂◀▸v▶¤◀v∫∫v▶¤‡‡##‡‡‡‡‡‡‡‡###‡‡###‡‡‡‡##‡‡‡‡##‡‡¤◀v∫∫v▶¤◀v◂▶▸::-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>text-stroke</title>
<style>
@font-face {
font-family: Konsole;
src: url(../_fonts/Konsolev1.1-VF.ttf);
}
body {
font-family: Konsole;
font-size: 6vh;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
height: 100vh;
}
.class-1 {
/* defines an outline of 0.5px */
-webkit-text-stroke: 0.5px;
}
.class-2 {
/* defines an outline of 2.5px */
-webkit-text-stroke: 2.5px;
}
.class-3 {
/* defines an outline of 5px */
-webkit-text-stroke: 5px;
}
</style>
</head>
<body>
<div>
<p class="class-1"> 0.5 px outline </p>
<p class="class-2"> 2.5 px outline </p>
<p class="class-3"> 5 px outline </p>
</div>
</body>
</html>