How to center an element horizontally in CSS?
If it has a fixed width, an element can be centered horizontal with
margin: 0 auto;
How to create a code block in markdown?
A code block is created with three backticks before and after the code:
```
code
```
How to create a new branch in Git?
A new branch is created with the command
git switch -c <branch-name>