O
O
OwerFan2020-10-14 14:00:39
css
OwerFan, 2020-10-14 14:00:39

How to write an article in html?

Hello! Please tell me the material where you can read how to write the structure of an article in html correctly. (I use bootstrap, I need to write an article). I have never done this, but it took an article to write. And at the same time I’ll ask how to do it at the beginning of the article like this. This is the first, as I understand it, h1 But under it, how to make this subtitle?5f86da0275266065706079.png

Answer the question

In order to leave comments, you need to log in

2 answer(s)
N
Nikita Mikhailov, 2020-10-14
@OwerFan

Headings must be sequential. You can see this article .
"Instruction 1" is the h1 heading. "Preparation of equipment" - heading h2. With centering in mind, you will need to add the text-center class. It will turn out something like this<h1>Инструкция 1</h1>

<h1 class="text-center">Инструкция 1</h1>
<h2 class="text-center">Подготовка оборудования</h2>

Frame the text in paragraph tags Frame all lists in the necessary tags. (numbered list) or (unordered list) Within lists, the items themselves are framed in<p></p>
<ul>
  <li>Пункт 1</li>
  <li>Пункт 2</li>
</ul>

I would insert a link to free courses, but this site is prohibited here -_-. Just type "HTML Text Markup" into a search engine and you'll find a wealth of information. Or you can find Code Basics
This will suffice in the beginning. Look at basic text markup structures.

X
xmoonlight, 2020-10-14
@xmoonlight

You can practice teaching tags here in parallel with writing your docks.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question