InterviewSolution
| 1. |
Markdown Headings |
|
Answer» Headings tell us about the title or subject of a piece of work. In markdown, there are 2 main ways to write headings both of which are discussed below:
We can write headings in markdown using the # symbol, followed by the heading that we want to write. The number of ‘#’ symbols indicate the size of the header. More the number of ‘#’ symbols, smaller the font size of the header. There are a total of 6 types of headers available in markdown. Example: # Heading1## Heading2 ### Heading3 #### Heading4 ##### Heading5 ###### Heading6 Output: Heading 1 Heading 2 Heading 3 Heading 4 Heading 5 Heading 6
We can also write headers using HTML formats using <hi></hi> (where i varies from 1 to 6, and it represents the size of the headers, from large to small) tags. Example: <h1>Heading 1</h1><h2>Heading 2</h2> <h3>Heading 3</h3> <h4>Heading 4</h4> <h5>Heading 5</h5> <h6>Heading 6</h6> Output: Heading 1 Heading 2 Heading 3 Heading 4 Heading 5 Heading 6 |
|