Skip to content

Commit f00ea1a

Browse files
Add Built with Cloudflare button (#25066)
* Add Built with Cloudflare button This PR adds a page with usage guides for the "Built with Cloudflare" button. * Update path, add changelog entry * Updated copy
1 parent 3c89e13 commit f00ea1a

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: Built with Cloudflare button
3+
description: Our new "Built with Cloudflare" button can be used to share your stack of choice with the world.
4+
products:
5+
- workers
6+
date: 2025-09-10
7+
---
8+
9+
We've updated our "Built with Cloudflare" button to make it easier to share that you're building on Cloudflare with the world. Embed it in your project's README, blog post, or wherever you want to let people know.
10+
11+
![Built with Cloudflare](https://workers.cloudflare.com/built-with-cloudflare.svg)
12+
13+
Check out the [documentation](/workers/platform/built-with-cloudflare) for usage information.
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
title: Built with Cloudflare button
3+
pcx_content_type: concept
4+
sidebar:
5+
order: 6
6+
head: []
7+
description: Set up a Built with Cloudflare button
8+
---
9+
10+
import { WranglerConfig } from "~/components";
11+
import { Tabs, TabItem } from "@astrojs/starlight/components";
12+
13+
If you're building an application or website on Cloudflare, you can embed a Built with Cloudflare button in your README, blog post, or documentation.
14+
15+
![Built with Cloudflare](https://workers.cloudflare.com/built-with-cloudflare.svg)
16+
17+
:::note[Disambiguation]
18+
19+
The "Built with Cloudflare" button can be used to share that you're using Cloudflare products on your website or application. If you want people to be able to deploy your application on their own account, refer to [Deploy to Cloudflare buttons](/workers/platform/deploy-buttons).
20+
21+
:::
22+
23+
## How to Set Up Built with Cloudflare button
24+
25+
The Built with Cloudflare button is an SVG and can be embedded anywhere. Use the following snippet to paste the button into your README, blog post, or documentation.
26+
27+
<Tabs syncKey="BuiltWithCloudflareButtonSnippet">
28+
<TabItem label="Markdown">
29+
```md
30+
[![Built with Cloudflare](https://workers.cloudflare.com/built-with-cloudflare.svg)](https://cloudflare.com)
31+
```
32+
33+
</TabItem>
34+
<TabItem label="HTML">
35+
```html
36+
<a href="https://cloudflare.com"><img src="https://workers.cloudflare.com/built-with-cloudflare.svg" alt="Built with Cloudflare"/></a>
37+
```
38+
39+
</TabItem>
40+
41+
<TabItem label="URL">
42+
```
43+
https://workers.cloudflare.com/built-with-cloudflare.svg
44+
```
45+
</TabItem>
46+
</Tabs>

0 commit comments

Comments
 (0)