Files
freeCodeCamp/guide/russian/html/tutorials/basic-html/index.md

28 lines
766 B
Markdown
Raw Normal View History

2018-10-12 16:00:59 -04:00
---
title: Basic HTML
2019-08-07 21:00:01 +03:00
localeTitle: Основы HTML
2018-10-12 16:00:59 -04:00
---
## Основной HTML
Это заглушка. [Помогите нашему сообществу расширить его](https://github.com/freecodecamp/guides/tree/master/src/pages/html/tutorials/basic-html/index.md) .
[Это руководство по быстрому стилю поможет вам принять ваш запрос на тягу](https://github.com/freecodecamp/guides/blob/master/README.md) .
2019-08-07 21:00:01 +03:00
Структура базового файла HTML выглядит следующим образом:
2018-10-12 16:00:59 -04:00
```html
<!doctype html>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
```
2019-08-07 21:00:01 +03:00
#### Дополнительная информация: