如何在web form visual studio 2017中添加自定义字体?

时间:2017-07-16 19:59:27

标签: asp.net .net asp.net-mvc fonts visual-studio-2017

Its a screenshot of the visual studio page

我正在尽力添加新的自定义字体我试图在资源文件夹和字体文件夹中添加字体但是没有成功。

   <style type="text/css">
   @font-face{
       font-family:"zekton rg";
       src: url(zekton rg.ttf);
   }

    .auto-style1 {
        width: 100%;
    }
    .auto-style2 {
        text-align: center;
    }
    .auto-style3 {
        text-align: center;
        height: 33px;
    }
    .auto-style4 {
        height: 33px;
    }
    .auto-style5 {
        height: 39px;
    }
    #Reset1 {
        text-align: left;
        height: 35px;
        width: 72px;
    }
</style>

请帮忙......

2 个答案:

答案 0 :(得分:0)

可能是因为您的字体尚未安装。

  

双击.ttf文件。   单击左上角的“安装”按钮。   安装字体然后重试。

希望它有所帮助!

答案 1 :(得分:0)

<link href="https://fonts.googleapis.com/css?family=your font name:300,400,400i,600,700,800" rel="stylesheet">

在你的头标记

以及身体标记下方的行

<body style="font-family: same font name as in url;">