Use on the webTotal Use [ 5707 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/42b070175a999c7dfa7d4996525d571e?family=Undersong+Split+W01+Split" 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/42b070175a999c7dfa7d4996525d571e?family=Undersong+Split+W01+Split);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Undersong Split W01 Split";
src: url("https://db.onlinewebfonts.com/t/42b070175a999c7dfa7d4996525d571e.eot");
src: url("https://db.onlinewebfonts.com/t/42b070175a999c7dfa7d4996525d571e.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/42b070175a999c7dfa7d4996525d571e.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/42b070175a999c7dfa7d4996525d571e.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/42b070175a999c7dfa7d4996525d571e.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/42b070175a999c7dfa7d4996525d571e.svg#Undersong Split W01 Split")format("svg");
}
2CSS rules to specify fonts
font-family: "Undersong Split W01 Split";