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