Advertisement
SoerenHelms

TikTok Font (static)

Sep 12th, 2020
1,949
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.37 KB | None | 0 0
  1. HTML:
  2.  
  3. <h1 class="tiktok-font">your text</h1>
  4.  
  5. CSS:
  6.  
  7. .tiktok-font {
  8.     font-size: 2em;
  9.     font-weight: bold;
  10.     color: #fff;
  11.     text-shadow: 2px 2px 0px #ff3e7a, -2px -2px 0px #4eeaf3;
  12.     display: block;
  13.  
  14.     /* additional spacing if you want */
  15.     margin: 5px 0;
  16.     margin-block-start: 0.67em;
  17.     margin-block-end: 0.67em;
  18.     margin-inline-start: 0px;
  19.     margin-inline-end: 0px;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement