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