需要在 CodeIgniter 中添加字体系列
Need to add a font family in CodeIgniter
我正在开发一个 CodeIgniter 项目。我需要在 CodeIgniter 中添加一个自定义字体系列,它将在所有项目中使用。我下载了ttf、eot、wof的字体文件。我在 CodeIgniter 的字体文件夹中添加了这些文件,然后我用 @font-face 更新了资产中的 style.css 文件。我已经为正文和其他标签声明了字体系列名称,但它正在工作我不确定我哪里出错了。
这是我在资产文件夹的 style.css 文件中添加的字体。
@font-face {
font-family: 'Poppins';
src: url('../font-awesome/fonts/Poppins-Black.eot');
src: local('../font-awesome/fonts/Poppins Black'), local('Poppins-Black'),
url('../font-awesome/fonts/Poppins-Black.eot?#iefix') format('embedded-opentype'),
url('../font-awesome/fonts/Poppins-Black.woff') format('woff'),
url('../font-awesome/fonts/Poppins-Black.ttf') format('truetype');
font-weight: 900;
font-style: normal;
}
body {
font-family: 'Poppins', sans-serif;
font-size: 16px;
font-weight: 300;
color: #888;
line-height: normal;
text-align: center;
}
您可以创建一个 template.php 文件以在整个项目中使用,然后在其中添加您的样式 link:
<link rel="stylesheet" href=<?php echo base_url('css/style.css'); ?>>
你的项目结构可能是这样的:
/application
/controllers
/models
/views
/css
/font-awesome
style.css (you should change the urls inside this file base on your structure)
/system
确保加载 html 帮助程序以使用 base_url 函数
另一种方法是在 here
中使用 html 助手
我正在开发一个 CodeIgniter 项目。我需要在 CodeIgniter 中添加一个自定义字体系列,它将在所有项目中使用。我下载了ttf、eot、wof的字体文件。我在 CodeIgniter 的字体文件夹中添加了这些文件,然后我用 @font-face 更新了资产中的 style.css 文件。我已经为正文和其他标签声明了字体系列名称,但它正在工作我不确定我哪里出错了。
这是我在资产文件夹的 style.css 文件中添加的字体。
@font-face {
font-family: 'Poppins';
src: url('../font-awesome/fonts/Poppins-Black.eot');
src: local('../font-awesome/fonts/Poppins Black'), local('Poppins-Black'),
url('../font-awesome/fonts/Poppins-Black.eot?#iefix') format('embedded-opentype'),
url('../font-awesome/fonts/Poppins-Black.woff') format('woff'),
url('../font-awesome/fonts/Poppins-Black.ttf') format('truetype');
font-weight: 900;
font-style: normal;
}
body {
font-family: 'Poppins', sans-serif;
font-size: 16px;
font-weight: 300;
color: #888;
line-height: normal;
text-align: center;
}
您可以创建一个 template.php 文件以在整个项目中使用,然后在其中添加您的样式 link:
<link rel="stylesheet" href=<?php echo base_url('css/style.css'); ?>>
你的项目结构可能是这样的:
/application
/controllers
/models
/views
/css
/font-awesome
style.css (you should change the urls inside this file base on your structure)
/system
确保加载 html 帮助程序以使用 base_url 函数
另一种方法是在 here
中使用 html 助手