Use on the webTotal Use [ 5937 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/84472214ebd9c525f1c3a7cf2b2885bb?family=XXII+YeahScript" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/84472214ebd9c525f1c3a7cf2b2885bb?family=XXII+YeahScript);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "XXII YeahScript";
src: url("https://db.onlinewebfonts.com/t/84472214ebd9c525f1c3a7cf2b2885bb.eot");
src: url("https://db.onlinewebfonts.com/t/84472214ebd9c525f1c3a7cf2b2885bb.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/84472214ebd9c525f1c3a7cf2b2885bb.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/84472214ebd9c525f1c3a7cf2b2885bb.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/84472214ebd9c525f1c3a7cf2b2885bb.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/84472214ebd9c525f1c3a7cf2b2885bb.svg#XXII YeahScript")format("svg");
}
2CSS rules to specify fonts
font-family: "XXII YeahScript";