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