Advertisement
sodorkid

Dimitri font (fill/no fill)

Mar 12th, 2023
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.55 KB | Help | 0 0
  1. <style>
  2.  /* Font by Fontalicious, found on DaFont */
  3.     @font-face {
  4.         src: url(https://dl.dropbox.com/s/0ivyz7juxlwzt8y/DIMIS___.TTF);
  5.         font-family: 'dimitri';
  6.     }
  7.    
  8.     @font-face {
  9.         src: url(https://dl.dropbox.com/s/m9kmdep4qddhxdn/DIMITRI_.TTF);
  10.         font-family: 'dimitri-fill';
  11.     }
  12.    
  13.     div {
  14.         font-family: 'dimitri';
  15.         font-size: 15px;
  16.     }
  17.    
  18.     #div2 {
  19.         font-family: 'dimitri-fill';
  20.         font-size: 15px;
  21. </style>
  22.  
  23. <div>Dimitri</div>
  24.  
  25. <div id="div2">Dimitri fill</div>
Tags: font dimitri
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement