Читайте также:
|
|
<!-- this is a comment! shhhh! -->
_____________________________________________________________________________________
ЦВЕТНОЙ ТЕКСТ
<p style="color:red;">I identify as a violet!!</p>
<p style="color:#0000FF;">I identify as a violet!!</p>
<th colspan="2" style="color:red;">Actors by Birth Year</th>
ОТТЕНКИ
1. Counting in base 16 goes like this: 123456789ABCDEF. What??
Well, "9" means nine, "A" means ten, "B" means eleven, and so forth. So F is the highest digit you can use in hexadecimal, and it's worth fifteen.
2. Colors represented in hexadecimal are numbers with six digits. The first two are for red, the next two are for green, the last two are for blue. Shorthand: RRGGBB.
3. The higher the number, the brighter the pixel on the screen. So 0 is the lowest setting (black) and F is the brightest setting.
_____________________________________________________________________________________
РАЗМЕР ШРИФТА (В пикселях)
<p style="font-size:9px;">I am huge! Make me tiny! 9-point font should do the trick.</p>
<p style="font-size:24px;">Make me have a font size of 24!</p>
РАЗМЕЩЕНИЕ ТЕКСТА
<p style="text-align:right;">
text
</p>
АКЦЕНТИРОВАНИЕ В ТЕКСТЕ
Hey, don't do <em>that</em>!
РЕЗУЛЬТАТ: Hey, don't do that!
Hey, don't do <strong>that</strong>!
РЕЗУЛЬТАТ: Hey, don't do that!
_____________________________________________________________________________________
TABLES
<html>
<head>
<title>Table Fable</title>
</head>
<body>
<table border="1px">
<tr>
<td>Helen Mirren</td>
<td>1945</td>
</tr>
<tr>
<td>Brad Pitt</td>
<td>1963</td>
</tr>
<tr>
<td>Ryan Gosling</td>
<td>1980</td>
</tr>
</table>
</body>
</html>
<tr> - table row (строка)
<td> - table data (как я понял ячейка, в которую надо вносить текст)
<th> - table header (is written within <thead>)
Дата добавления: 2015-08-17; просмотров: 35 | Нарушение авторских прав
<== предыдущая страница | | | следующая страница ==> |
РАЗМЕЩЕНИЕ ИЗОБРАЖЕНИЯ НА СТРАНИЦЕ | | | РЕЦЕПТ ПЕЧЕНЮЖКИ :3 |