Я написал подпись в html, и он не принимает шрифт. Если я открою файл html локально, например, в Chrome, там будет шрифт. Если я ставлю подпись в Thunderbird, она дает мне основной шрифт c. Кто-нибудь может помочь, пожалуйста?
Я пробовал разными способами, даже в стиле не работает, а также с font-face не работает.
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
display: flex;
flex-direction: row;
flex-wrap: wrap;
height: 300px;
width: 600px;
}
header {
flex: 0 1 100%;
background: white;
}
aside {
clear: left;
float: left;
width: 200px;
margin-right: 3px;
padding: 3px;
background: white;
height: 200px;
}
main {
float: left;
width: 3px;
margin-left: 3px;
padding: 3px;
background: white;
height: 300px;
}
main1{
float: left;
width: 3px;
margin-left: 2%;
padding: 2%;
background: white;
}
.quarter_ring {
width: 13px;
height: 13px;
background: radial-gradient(ellipse at 0% 100%, transparent 0%, transparent 58%, red 20%, Red 63%, transparent 60%, transparent 70%);
}
#verticalLine{
position: absolute;
top:0;
left:230px;
width:1px;
height:30px;
background-color:red;
}
#colorstrip{
position:top;
top:50px;
width:0;
height:1px;
width:245px;
background-color:red;
}
@font-face {
font-family: fontTW;
src: url(TehnoWorld_I_R.ttf);
}
* {
font-family: fontTW;
}
p.solid {border-style: solid;}
</style>
</head>
<body>
<header>
<font style= "file://C:\Users\IT Cosmin\Desktop\Tehnoworld\semnatura noua\TehnoWorld_I_R.ttf" size="4px" color="red"><span valign="left" textclass="nume" colspan="2"style="margin-right: 60px; margin-left: 5px;">Cosmin Manolache</font></span>
<img src="file://C:\Users\IT Cosmin\Desktop\Tehnoworld\semnatura noua\logo-305x50.png" height="35" width="210" style="margin-right: 30px;">
<tr>
<td>
<br>
<span valign="center" class="functie" colspan="2" style="margin-left: 5px;"><font size="2" color="red">0753 875 338</font></span><br>
<span class="mail" style="margin-left: 5px;"><font size="2.5" color="red">cosmin.manolache@tehnoworld.ro</font></span>
<div id="verticalLine" style="border-top-width: 50px; margin-top: 72px;" ><div class="quarter_ring"></div></div>
<div id="colorstrip"></div>
</header>
<aside style="padding-left: 0px; margin-right: 0px; padding-rght: 0px">
<p style="margin-top: 5px; margin-bottom: 0px;"><b class="functie" ><font size="3px" color="red">Departament IT</font></b></span></p><br>
</td>
</tr>
<p style="margin-top: 0px;margin-bottom: 0px;"><font size="2px" color="red">S.C TehnoWorld SRL</font></p>
<p style="margin-top: 0px;margin-bottom: 0px;"><font size="2px" color="red">Loc. Baia, nr. 1616, DN2E km 2</font></p>
<p style="margin-top: 0px; margin-bottom: 0px;"><font size="2px" color="red">Jud. Suceava, RO-727020</font></p>
<p style="margin-top: 0px;"><font size="2.5" color="red">Romania - 727020</font></p>
</aside>
</td>
<main style="margin-top: 25px; width:180px; margin-left: 0px;padding-left: 0px;">
<br>
<font size="2px"; color="red"> T: +40 230 546 696</font><br>
<font size="2px" color="red"> F: +40 230 206 090</font><br>
<font size="2px" color="red"> office@tehnoworld.ro</font><br>
</body>
</html>