我正在尝试使用Neo Tech Black字体在我的网页中使用重音符号,但它在这里不起作用。我打开.otf文件,我真的发现只有小写和大写的字母字符。我可以做些什么来不必更改我的字体选择?
简化我的 html5 代码就像
<html>
<head>
<title>Gustavo Schimiti Home Page</title>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
<link rel="stylesheet" type="text/css" href="HPStyle.css"/>
</head>
<body>
<div id="container">
<header id="page_header"><h1>Gustavo Schimiti<h1></header>
<nav>Home | Horários</nav>
</div>
</body>
</html>
我的css3代码就像
#container {
width: 960px;
margin: 0 auto 0;
position: relative;
}
header {
background-color: rgb(161, 182, 154);
border-radius: 10px;
float: left;
width: 960px;
height: 140px;
font-family: NeoTech;
src: url("NeoTech-Black.otf") format("opentype");
text-align: center;
color: white;
}
nav {
background-color: rgb(90, 71, 27);
border-radius: 10px;
float: left;
width: 960px;
height: 40px;
font-family: NeoTech;
src: url("NeoTech-Black.otf") format("opentype");
text-align: center;
color: white;
}
问题出现在导航标签中单词“Horários”的“á”字符上。