Оттенки
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.
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.
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>)
<tbody> - table body
<thead> -table head
<th colspan="3">Taking up 3 columns!</th> - надпись по умолч. В 1 клетке. Эта команда позволяет ввести кол-во столбцов, над которыми будет текст. Так же применяется к <td>.
ТАБЛИЦЫ И ЗАГОЛОВКИ ТАБЛИЦ
<html>
<head>
<title>Table Fable</title>
</head>
<body>
<table border="1px">
<thead>
<tr>
<th>Actor</th>
<th>Birth Year</th>
</tr>
</thead>
<tbody>
<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>
</tbody>
</table>
</body>
</html>
Описание строк выше
_____________________________________________________________________________________
Рецепт печенюжки :3
<html>
<head>
<title>Chocolate Chip Cookies</title>
</head>
<body>
<h1 style="text-align:center">
Chocolate Chip Cookies
</h1>
<img src="http://i1150.photobucket.com/albums/o605/slaundy/1100060_11625576-1.jpg" align="center" width="450"/>
<ul>
<li>1 cup butter, softened</li>
<li>1 cup white sugar</li>
<li>1 cup packed brown sugar</li>
<li>2 eggs</li>
<li>2 teaspoons vanilla extract</li>
<li>3 cups all-purpose flour</li>
<li>1 teaspoon baking soda</li>
<li>2 teaspoons hot water</li>
<li>1/2 teaspoon salt</li>
<li>2 cups semisweet chocolate chips</li>
<li>1 cup chopped walnuts</li>
</ul>
<ol>
<li>Preheat oven to 350 degrees F (175 degrees C).</li>
<li>Cream together the butter, white sugar, and brown sugar until smooth. Beat in the eggs one at a time, then stir in the vanilla. Dissolve baking soda in hot water. Add to batter along with salt. Stir in flour, chocolate chips, and nuts. Drop by large spoonfuls onto ungreased pans.</li>
<li>Bake for about 10 minutes in the preheated oven, or until edges are nicely browned.</li>
</ol>
Recipe from <a href="http://allrecipes.com/recipe/best-chocolate-chip-cookies/">Allrecipes.com </a>
</body>
</html>
_____________________________________________________________________________________
