{"id":28445453,"url":"https://github.com/suptarr/colmar-bootstrap","last_synced_at":"2026-04-17T08:31:33.950Z","repository":{"id":62529455,"uuid":"558873066","full_name":"SupTarr/Colmar-Bootstrap","owner":"SupTarr","description":"Use Bootstrap knowledge to create a website for Colmar Academy School.","archived":false,"fork":false,"pushed_at":"2022-11-03T07:33:35.000Z","size":11894,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-31T09:39:20.270Z","etag":null,"topics":["bootstrap5","css","html"],"latest_commit_sha":null,"homepage":"https://suptarr.github.io/Colmar-Bootstrap/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SupTarr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-10-28T13:47:57.000Z","updated_at":"2022-10-28T14:03:17.000Z","dependencies_parsed_at":"2023-01-21T12:01:40.853Z","dependency_job_id":null,"html_url":"https://github.com/SupTarr/Colmar-Bootstrap","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SupTarr/Colmar-Bootstrap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SupTarr%2FColmar-Bootstrap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SupTarr%2FColmar-Bootstrap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SupTarr%2FColmar-Bootstrap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SupTarr%2FColmar-Bootstrap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SupTarr","download_url":"https://codeload.github.com/SupTarr/Colmar-Bootstrap/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SupTarr%2FColmar-Bootstrap/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31921787,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"online","status_checked_at":"2026-04-17T02:00:06.879Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bootstrap5","css","html"],"created_at":"2025-06-06T10:13:01.854Z","updated_at":"2026-04-17T08:31:33.945Z","avatar_url":"https://github.com/SupTarr.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Colmar Academy Bootstrap\n\n## About The Project\n\nI make full use of `Bootstrap` knowledge and its accompanying documentation to design and create a website for Colmar Academy School. You can download the Colmar Academy's design spec [here](https://content.codecademy.com/courses/freelance-1/capstone-2/colmar-academy-spec.png).\n\n## Technologies\n\nThis project was created with:\n\n- HTML5\n- CSS3\n- Bootstrap5\n- Git, GitHub and GitHub Pages\n\n## Installation\n\n### Quick start with Bootstrap\n\n1. **Create a new `index.html`** file in your project root. Include the `\u003cmeta name=\"viewport\"\u003e` tag as well for [proper responsive behavior](https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag) in mobile devices.\n\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n  \u003chead\u003e\n    \u003cmeta charset=\"utf-8\" /\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1\" /\u003e\n    \u003ctitle\u003eBootstrap demo\u003c/title\u003e\n  \u003c/head\u003e\n  \u003cbody\u003e\n    \u003ch1\u003eHello, world!\u003c/h1\u003e\n  \u003c/body\u003e\n\u003c/html\u003e\n```\n\n2. **Include Bootstrap’s CSS and JS.** Place the `\u003clink\u003e` tag in the `\u003chead\u003e` for our CSS, and the `\u003cscript\u003e` tag for our JavaScript bundle (including Popper for positioning dropdowns, poppers, and tooltips) before the closing `\u003c/body\u003e`.\n\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n  \u003chead\u003e\n    \u003cmeta charset=\"utf-8\" /\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1\" /\u003e\n    \u003ctitle\u003eBootstrap demo\u003c/title\u003e\n    \u003c!-- CDN links of CSS --\u003e\n    \u003clink\n      href=\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css\"\n      rel=\"stylesheet\"\n      integrity=\"sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi\"\n      crossorigin=\"anonymous\"\n    /\u003e\n  \u003c/head\u003e\n  \u003cbody\u003e\n    \u003ch1\u003eHello, world!\u003c/h1\u003e\n    \u003c!-- CDN links of JS --\u003e\n    \u003cscript\n      src=\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js\"\n      integrity=\"sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3\"\n      crossorigin=\"anonymous\"\n    \u003e\u003c/script\u003e\n  \u003c/body\u003e\n\u003c/html\u003e\n```\n\n### Run Locally\n\nClone the project\n\n```sh\ngit clone https://github.com/SupTarr/Colmar-Bootstrap.git\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuptarr%2Fcolmar-bootstrap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuptarr%2Fcolmar-bootstrap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuptarr%2Fcolmar-bootstrap/lists"}