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