Свойства CSS: Как указать шрифт с именем и URL, где его можно найти?
Перейти на страницу упражнений
Решение:
HTML-код:
<!DOCTYPE html>
<html>
<head>
<title>How to specify a font named and URL where it can be found</title>
<style type="text/css">
.w3r1 {
font: 15px "Times New Roman", Times, serif;
}
.w3r2 {
font: 15px Georgia, Times, serif;
}
.w3r3 {
font: 15px "Courier New", Courier, monospace;
}
.w3r4 {
font: 15px Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>
<p><strong>w3resource Tutorial</strong></p>
<p class="w3r1">
CSS, stands for Cascading Style Sheet is a computer language to describe presentation (for example width, height, color, background color, alignment etc.) of HTML and XML (and XML based languages like XHTML, SVG) web documents. In all the examples of our tutorials, we have used HTML for implementing CSS.
</p>
<p class="w3r2">
CSS, stands for Cascading Style Sheet is a computer language to describe presentation (for example width, height, color, background color, alignment etc.) of HTML and XML (and XML based languages like XHTML, SVG) web documents. In all the examples of our tutorials, we have used HTML for implementing CSS.
</p>
<p class="w3r3">
CSS, stands for Cascading Style Sheet is a computer language to describe presentation (for example width, height, color, background color, alignment etc.) of HTML and XML (and XML based languages like XHTML, SVG) web documents. In all the examples of our tutorials, we have used HTML for implementing CSS.
</p>
<p class="w3r4">
CSS, stands for Cascading Style Sheet is a computer language to describe presentation (for example width, height, color, background color, alignment etc.) of HTML and XML (and XML based languages like XHTML, SVG) web documents. In all the examples of our tutorials, we have used HTML for implementing CSS.
</p>
</body>
</html>
Демонстрация в реальном времени:
См. Pen font-face-answer от w3resource ( @ w3resource ) в CodePen .
Поддерживаемый браузер
да | да | да | да | нет |
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code