Объяснение:
<html>
<head>
<style>
.arial{
font-style: arial, sans-serif;
}
.times{
font-style: times, sans-serif;
.calibri{
font-style: calibri, sans-serif;
.new{
font-style: New Roman, serif;
</style>
</head>
<body>
<p class="arial">arial</p>
<p class="times">times</p>
<p class="calibri">calibri</p>
</body>
</html>
Объяснение:
<html>
<head>
<style>
.arial{
font-style: arial, sans-serif;
}
.times{
font-style: times, sans-serif;
}
.calibri{
font-style: calibri, sans-serif;
}
.new{
font-style: New Roman, serif;
}
</style>
</head>
<body>
<p class="arial">arial</p>
<p class="times">times</p>
<p class="calibri">calibri</p>
</body>
</html>