Key HTML tags
In this lesson we will discuss key html tags. Tags may be paired and unpaired, block and inline. How to make link in html, how to make image in html, how to make lists in html – you will learn it in this lesson. Before watching this tutorial I recommend you to watch intro to html tutorial
Useful links:
Handbook html/css — http://htmlbook.ru/
“Fast” images services — https://placekitten.com/
Code lesson
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Основные теги HTML</title>
</head>
<body>
<a href="https://www.yandex.ru/" target="_blank">Ссылка fdhjhgghhgfghjhkjhkh</a>
<img src="http://placekitten.com/g/250/300" alt=""/>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus excepturi nemo velit optio ratione alias aspernatur accusamus odio at quibusdam numquam cum ex minus, totam quae perspiciatis eius obcaecati ullam.
<ul>
<li>Пункт 1</li>
<li>Пункт 2</li>
<li>Пункт 3</li>
</ul>
<ol>
<li>Пункт 1</li>
<li>Пункт 2</li>
<li>Пункт 3</li>
<li>Пункт 4</li>
</ol>
<dl>
<dt>Арбуз</dt>
<dd>это ягода</dd>
<dt>Огурец</dt>
<dd>это овощ</dd>
</dl>
<select>
<option>Пункт 1</option>
<option>Пункт 2</option>
<option>Пункт 3</option>
<option>Пункт 4</option>
</select>
<form>
<input type="text"/>
<input type="password"/>
<textarea></textarea>
<button>Отправить</button>
<input type="submit" value="Отправить"/>
</form>
<table border="1">
<tr>
<th>Место</th>
<th>Команда</th>
<th>Очки</th>
</tr>
<tr>
<td>1</td>
<td>Барселона</td>
<td>30</td>
</tr>
<tr>
<td>2</td>
<td>Реал</td>
<td>28</td>
</tr>
<tr>
<td>3</td>
<td>Атлетико Мадрид</td>
<td>26</td>
</tr>
</table>
</body>
</html>
0 Comments