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