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