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