Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 973 Bytes

guide-formatting.md

File metadata and controls

41 lines (27 loc) · 973 Bytes

Formatting Guide

See typography from this markdown

Aligning images for posts

left alignment

This is the code you need to align images to the left:

<img align="left" width="100" height="100" src="http://www.fillmurray.com/100/100">

right alignment

This is the code you need to align images to the right:

<img align="right" width="100" height="100" src="http://www.fillmurray.com/100/100">

center alignment example

<p align="center">
  <img width="460" height="300" src="http://www.fillmurray.com/460/300">
</p>