···11+---
22+title: Status Badge
33+description: "Easily embed a badge into your website"
44+---
55+66+## PNG Badge
77+88+```html
99+<img src='https://[slug].openstatus.dev/badge'>
1010+```
1111+1212+This will return a PNG image with the status of your page. It will look like this:
1313+<img src='https://status.openstatus.dev/badge' />
1414+1515+You can customize the theme by adding `?theme=dark` and the size of it by adding `?size=lg`.
1616+1717+Supported themes:
1818+- `dark`
1919+- `light` (default)
2020+2121+Supported sizes:
2222+- `sm` (default)
2323+- `md`
2424+- `lg`
2525+- `xl`
2626+2727+It will display the following labels based on the current status of the status page:
2828+2929+```
3030+Operational
3131+Degraded
3232+Outage
3333+Incident
3434+Maintenance
3535+Unknown
3636+```
3737+3838+## SVG Badge (v2)
3939+4040+```html
4141+<img src='https://[slug].openstatus.dev/badge/v2'>
4242+```
4343+4444+This will return a PNG image with the status of your page. It will look like this:
4545+<img src='https://status.openstatus.dev/badge/v2' />
4646+4747+You can customize the theme by adding `?theme=dark` and the size of it by adding `?size=lg`.
4848+4949+Supported themes:
5050+- `dark`
5151+- `light` (default)
5252+5353+Supported sizes:
5454+- `sm` (default)
5555+- `md`
5656+- `lg`
5757+- `xl`
5858+5959+Compared to the PNG badge, we let you define the `border` and `border-radius` of the SVG badge and the font is mono.
6060+6161+It will display the following labels based on the current status of the status page:
6262+6363+```
6464+All Systems Operational
6565+Degraded Performance
6666+Partial Outage
6767+Major Outage
6868+Ongoing Incident
6969+Under Maintenance
7070+Unknown
7171+```
7272+7373+---
7474+7575+Read more on which status is being shown [here](/tools/status-widget/#how-does-it-work).
···287287---
288288289289<StatusWidget slug="monitor-slug-here" />
290290-```
291291-### SVG Badge
292292-293293-You can also use the SVG badge to display the status of your page.
294294-295295-```html
296296- <img src='https://[slug].openstatus.dev/badge'>
297297-```
298298-This will return an SVG image with the status of your page. It will look like this:
299299-<img src='https://status.openstatus.dev/badge' />
300300-301301-290290+```