Skip to content

Latest commit

 

History

History
83 lines (76 loc) · 3.22 KB

README.md

File metadata and controls

83 lines (76 loc) · 3.22 KB

Contents:

Markdown Cheatsheet


Markdown Cheatsheet

Markdown Basics (Github Docs)


Styling Text:


Center

  • HTML/CSS style (inline style)
<p style="text-align: center;">text_content</p>

text_content

  • Github Flavoured
<p align="center">text_content</p>

text_content

<center>text_content</center>
text_content

Color

<span style="color:blue">some *blue* text</span>

some blue text

Styling Image


Center

  • HTML style
<p align="center">
    <img src="images/markdown.jpg" 
        alt="markdown image"
        width="720" 
        height="360" 
        style="display: block; margin: 0 auto"
      />
/p>

markdown image

Section or Content Link / Table of Contents


[Chapter-1](#chapter-1)
[Chapter-2](#chapter-2)
[Chapter-3](#chapter-3)

Chapter-1
Chapter-2
Chapter-3

Chapter-1

.......... text content of chapter 1 .............

Chapter-2

.......... text content of chapter 2 .............

Chapter-3

.......... text content of chapter 3 .............