├── README.md ├── assets ├── css │ ├── open-source.css │ └── w3c-developers.css ├── img │ ├── loading.svg │ ├── open-source-cover.png │ ├── w3c-for-developers-blue.svg │ └── w3c-for-developers.svg ├── js │ └── open-source.js └── octicons │ ├── LICENSE.txt │ ├── README.md │ ├── octicons-local.ttf │ ├── octicons.css │ ├── octicons.eot │ ├── octicons.less │ ├── octicons.scss │ ├── octicons.svg │ ├── octicons.ttf │ ├── octicons.woff │ └── sprockets-octicons.scss ├── bootstrap ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js ├── css ├── build-the-web.css ├── landing.css ├── template.css └── tools.css ├── get-involved ├── index.html └── open-source.html ├── img ├── W3C-Developers-Dark.svg ├── W3C-Developers-Light.svg ├── W3C-Developers-Roboto.svg ├── W3C-Developers-text.svg ├── atom.svg ├── bg-pattern-landing.svg ├── book.svg ├── bug.svg ├── chapters.svg ├── chimist.svg ├── coffee.svg ├── community.svg ├── contribute.svg ├── coralie.png ├── credit.png ├── crew.svg ├── crew2.svg ├── dev-meetup-2019.jpg ├── developers-icon-blue.svg ├── developers-icon-pink.svg ├── developers-icon.png ├── developers-icon.svg ├── developers.svg ├── discuss-example.svg ├── discuss-laptop.svg ├── discuss.svg ├── donate.svg ├── dotted-world-map.svg ├── edx-fewd.png ├── friends-donate.svg ├── friends.svg ├── github-light.svg ├── github.svg ├── guillaume.png ├── header-img.svg ├── header.svg ├── header2.svg ├── header3.svg ├── help.svg ├── html5.svg ├── medium-light.svg ├── medium.svg ├── paypal.svg ├── red-balloon.svg ├── specifiction.png ├── test-developers.svg ├── test-the-web-fwd.gif ├── test-the-web-fwd.png ├── twitter-light.svg ├── twitter.svg ├── unicorn-rocket.svg ├── unicorn-rocket2.svg ├── unknow-profile.png ├── validator-nu.svg ├── view-source-conf.png ├── view-source-conf.svg ├── w3c-banner.svg ├── w3c-bg.svg ├── w3c-dark-logo.svg ├── w3c-developers-round-icon.svg ├── w3c-developers-shadow.svg ├── w3c-developers-test.svg ├── w3c-developers.svg ├── w3c-light-logo.svg ├── w3c-ribbon.svg ├── w3c.svg ├── w3c_logo.svg ├── w3capi-img.svg ├── webplatform.svg └── webspec.svg ├── index.html ├── js ├── donate.js ├── jquery-2.1.4.min.js ├── script.js ├── smooth-scroll.min.js └── toggle.js ├── octicons ├── README.md ├── octicons-local.ttf ├── octicons.css ├── octicons.eot ├── octicons.less ├── octicons.scss ├── octicons.svg ├── octicons.ttf ├── octicons.woff └── sprockets-octicons.scss ├── tools └── index.html └── w3c.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/open-source.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/css/open-source.css -------------------------------------------------------------------------------- /assets/css/w3c-developers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/css/w3c-developers.css -------------------------------------------------------------------------------- /assets/img/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/img/loading.svg -------------------------------------------------------------------------------- /assets/img/open-source-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/img/open-source-cover.png -------------------------------------------------------------------------------- /assets/img/w3c-for-developers-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/img/w3c-for-developers-blue.svg -------------------------------------------------------------------------------- /assets/img/w3c-for-developers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/img/w3c-for-developers.svg -------------------------------------------------------------------------------- /assets/js/open-source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/js/open-source.js -------------------------------------------------------------------------------- /assets/octicons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/octicons/LICENSE.txt -------------------------------------------------------------------------------- /assets/octicons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/octicons/README.md -------------------------------------------------------------------------------- /assets/octicons/octicons-local.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/octicons/octicons-local.ttf -------------------------------------------------------------------------------- /assets/octicons/octicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/octicons/octicons.css -------------------------------------------------------------------------------- /assets/octicons/octicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/octicons/octicons.eot -------------------------------------------------------------------------------- /assets/octicons/octicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/octicons/octicons.less -------------------------------------------------------------------------------- /assets/octicons/octicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/octicons/octicons.scss -------------------------------------------------------------------------------- /assets/octicons/octicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/octicons/octicons.svg -------------------------------------------------------------------------------- /assets/octicons/octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/octicons/octicons.ttf -------------------------------------------------------------------------------- /assets/octicons/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/octicons/octicons.woff -------------------------------------------------------------------------------- /assets/octicons/sprockets-octicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/assets/octicons/sprockets-octicons.scss -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/bootstrap/js/npm.js -------------------------------------------------------------------------------- /css/build-the-web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/css/build-the-web.css -------------------------------------------------------------------------------- /css/landing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/css/landing.css -------------------------------------------------------------------------------- /css/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/css/template.css -------------------------------------------------------------------------------- /css/tools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/css/tools.css -------------------------------------------------------------------------------- /get-involved/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/get-involved/index.html -------------------------------------------------------------------------------- /get-involved/open-source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/get-involved/open-source.html -------------------------------------------------------------------------------- /img/W3C-Developers-Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/W3C-Developers-Dark.svg -------------------------------------------------------------------------------- /img/W3C-Developers-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/W3C-Developers-Light.svg -------------------------------------------------------------------------------- /img/W3C-Developers-Roboto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/W3C-Developers-Roboto.svg -------------------------------------------------------------------------------- /img/W3C-Developers-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/W3C-Developers-text.svg -------------------------------------------------------------------------------- /img/atom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/atom.svg -------------------------------------------------------------------------------- /img/bg-pattern-landing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/bg-pattern-landing.svg -------------------------------------------------------------------------------- /img/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/book.svg -------------------------------------------------------------------------------- /img/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/bug.svg -------------------------------------------------------------------------------- /img/chapters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/chapters.svg -------------------------------------------------------------------------------- /img/chimist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/chimist.svg -------------------------------------------------------------------------------- /img/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/coffee.svg -------------------------------------------------------------------------------- /img/community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/community.svg -------------------------------------------------------------------------------- /img/contribute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/contribute.svg -------------------------------------------------------------------------------- /img/coralie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/coralie.png -------------------------------------------------------------------------------- /img/credit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/credit.png -------------------------------------------------------------------------------- /img/crew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/crew.svg -------------------------------------------------------------------------------- /img/crew2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/crew2.svg -------------------------------------------------------------------------------- /img/dev-meetup-2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/dev-meetup-2019.jpg -------------------------------------------------------------------------------- /img/developers-icon-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/developers-icon-blue.svg -------------------------------------------------------------------------------- /img/developers-icon-pink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/developers-icon-pink.svg -------------------------------------------------------------------------------- /img/developers-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/developers-icon.png -------------------------------------------------------------------------------- /img/developers-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/developers-icon.svg -------------------------------------------------------------------------------- /img/developers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/developers.svg -------------------------------------------------------------------------------- /img/discuss-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/discuss-example.svg -------------------------------------------------------------------------------- /img/discuss-laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/discuss-laptop.svg -------------------------------------------------------------------------------- /img/discuss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/discuss.svg -------------------------------------------------------------------------------- /img/donate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/donate.svg -------------------------------------------------------------------------------- /img/dotted-world-map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/dotted-world-map.svg -------------------------------------------------------------------------------- /img/edx-fewd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/edx-fewd.png -------------------------------------------------------------------------------- /img/friends-donate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/friends-donate.svg -------------------------------------------------------------------------------- /img/friends.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/friends.svg -------------------------------------------------------------------------------- /img/github-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/github-light.svg -------------------------------------------------------------------------------- /img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/github.svg -------------------------------------------------------------------------------- /img/guillaume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/guillaume.png -------------------------------------------------------------------------------- /img/header-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/header-img.svg -------------------------------------------------------------------------------- /img/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/header.svg -------------------------------------------------------------------------------- /img/header2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/header2.svg -------------------------------------------------------------------------------- /img/header3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/header3.svg -------------------------------------------------------------------------------- /img/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/help.svg -------------------------------------------------------------------------------- /img/html5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/html5.svg -------------------------------------------------------------------------------- /img/medium-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/medium-light.svg -------------------------------------------------------------------------------- /img/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/medium.svg -------------------------------------------------------------------------------- /img/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/paypal.svg -------------------------------------------------------------------------------- /img/red-balloon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/red-balloon.svg -------------------------------------------------------------------------------- /img/specifiction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/specifiction.png -------------------------------------------------------------------------------- /img/test-developers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/test-developers.svg -------------------------------------------------------------------------------- /img/test-the-web-fwd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/test-the-web-fwd.gif -------------------------------------------------------------------------------- /img/test-the-web-fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/test-the-web-fwd.png -------------------------------------------------------------------------------- /img/twitter-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/twitter-light.svg -------------------------------------------------------------------------------- /img/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/twitter.svg -------------------------------------------------------------------------------- /img/unicorn-rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/unicorn-rocket.svg -------------------------------------------------------------------------------- /img/unicorn-rocket2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/unicorn-rocket2.svg -------------------------------------------------------------------------------- /img/unknow-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/unknow-profile.png -------------------------------------------------------------------------------- /img/validator-nu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/validator-nu.svg -------------------------------------------------------------------------------- /img/view-source-conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/view-source-conf.png -------------------------------------------------------------------------------- /img/view-source-conf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/view-source-conf.svg -------------------------------------------------------------------------------- /img/w3c-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/w3c-banner.svg -------------------------------------------------------------------------------- /img/w3c-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/w3c-bg.svg -------------------------------------------------------------------------------- /img/w3c-dark-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/w3c-dark-logo.svg -------------------------------------------------------------------------------- /img/w3c-developers-round-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/w3c-developers-round-icon.svg -------------------------------------------------------------------------------- /img/w3c-developers-shadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/w3c-developers-shadow.svg -------------------------------------------------------------------------------- /img/w3c-developers-test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/w3c-developers-test.svg -------------------------------------------------------------------------------- /img/w3c-developers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/w3c-developers.svg -------------------------------------------------------------------------------- /img/w3c-light-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/w3c-light-logo.svg -------------------------------------------------------------------------------- /img/w3c-ribbon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/w3c-ribbon.svg -------------------------------------------------------------------------------- /img/w3c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/w3c.svg -------------------------------------------------------------------------------- /img/w3c_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/w3c_logo.svg -------------------------------------------------------------------------------- /img/w3capi-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/w3capi-img.svg -------------------------------------------------------------------------------- /img/webplatform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/webplatform.svg -------------------------------------------------------------------------------- /img/webspec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/img/webspec.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/index.html -------------------------------------------------------------------------------- /js/donate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/js/donate.js -------------------------------------------------------------------------------- /js/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/js/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/js/script.js -------------------------------------------------------------------------------- /js/smooth-scroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/js/smooth-scroll.min.js -------------------------------------------------------------------------------- /js/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/js/toggle.js -------------------------------------------------------------------------------- /octicons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/octicons/README.md -------------------------------------------------------------------------------- /octicons/octicons-local.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/octicons/octicons-local.ttf -------------------------------------------------------------------------------- /octicons/octicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/octicons/octicons.css -------------------------------------------------------------------------------- /octicons/octicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/octicons/octicons.eot -------------------------------------------------------------------------------- /octicons/octicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/octicons/octicons.less -------------------------------------------------------------------------------- /octicons/octicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/octicons/octicons.scss -------------------------------------------------------------------------------- /octicons/octicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/octicons/octicons.svg -------------------------------------------------------------------------------- /octicons/octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/octicons/octicons.ttf -------------------------------------------------------------------------------- /octicons/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/octicons/octicons.woff -------------------------------------------------------------------------------- /octicons/sprockets-octicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/octicons/sprockets-octicons.scss -------------------------------------------------------------------------------- /tools/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/tools/index.html -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/developers/HEAD/w3c.json --------------------------------------------------------------------------------