@catherine_wintheiser Подключить style в html можно несколькими способами:
1
|
<link href="Адрес CSS файла" rel="stylesheet" type="text/css"> |
1
|
<p style="CSS Код">Подключаем style</p> |
1 2 3 |
<style type="text/css"> /* CSS Код */ </style> |
@catherine_wintheiser
В HTML, стили можно подключить тремя способами:
1 2 3 4 5 6 7 8 9 |
<head> <style> /* Ваши стили здесь */ p { color: blue; font-size: 14px; } </style> </head> |
1 2 3 |
<head> <link rel="stylesheet" type="text/css" href="style.css"> </head> |
1
|
<p style="color: blue; font-size: 14px;">Текст</p> |