diff options
| author | Bobby <[email protected]> | 2024-08-16 20:47:33 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-08-16 20:47:33 -0400 |
| commit | 6b28433d9cfde435be8ec2bd6cf91e6324d08865 (patch) | |
| tree | 8343c27b8b95ff5639233e81cf157f92e5688466 /site/content/docs/5.3/about/brand.md | |
| parent | d53094ec16ba385faae2973ddee648698b32ab24 (diff) | |
| parent | 048f56f51460df75e92a2f7b472e1c56baeb68f7 (diff) | |
| download | bootstrap-main.tar.xz bootstrap-main.zip | |
Diffstat (limited to 'site/content/docs/5.3/about/brand.md')
| -rw-r--r-- | site/content/docs/5.3/about/brand.md | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/site/content/docs/5.3/about/brand.md b/site/content/docs/5.3/about/brand.md new file mode 100644 index 000000000..59f262eff --- /dev/null +++ b/site/content/docs/5.3/about/brand.md @@ -0,0 +1,43 @@ +--- +layout: docs +title: Brand guidelines +description: Documentation and examples for Bootstrap's logo and brand usage guidelines. +group: about +toc: true +--- + +Have a need for Bootstrap's brand resources? Great! We have only a few guidelines we follow, and in turn ask you to follow as well. + +## Logo + +When referencing Bootstrap, use our logo mark. Do not modify our logos in any way. Do not use Bootstrap's branding for your own open or closed source projects. + +<div class="bd-brand-item px-2 py-5 mb-3 border rounded-3"> + <img class="d-block img-fluid mx-auto" src="/docs/{{< param docs_version >}}/assets/brand/bootstrap-logo.svg" alt="Bootstrap" width="256" height="204"> +</div> + +Our logo mark is also available in black and white. All rules for our primary logo apply to these as well. + +<div class="bd-brand-logos d-sm-flex text-center bg-light rounded-3 overflow-hidden w-100 mb-3"> + <div class="bd-brand-item w-100 px-2 py-5"> + <img src="/docs/{{< param docs_version >}}/assets/brand/bootstrap-logo-black.svg" alt="Bootstrap" width="128" height="102" loading="lazy"> + </div> + <div class="bd-brand-item w-100 px-2 py-5 inverse"> + <img src="/docs/{{< param docs_version >}}/assets/brand/bootstrap-logo-white.svg" alt="Bootstrap" width="128" height="102" loading="lazy"> + </div> +</div> + +## Name + +Bootstrap should always be referred to as just **Bootstrap**. No capital _s_. + +<div class="bd-brand-logos d-sm-flex text-center border rounded-3 overflow-hidden w-100 mb-3"> + <div class="bd-brand-item w-100 px-2 py-5"> + <div class="h3">Bootstrap</div> + <strong class="text-success">Correct</strong> + </div> + <div class="bd-brand-item w-100 px-2 py-5"> + <div class="h3 text-body-secondary">BootStrap</div> + <strong class="text-danger">Incorrect</strong> + </div> +</div> |
