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