{"id":24508624,"url":"https://github.com/adygcode/learning-html-css-js","last_synced_at":"2026-03-19T19:34:23.660Z","repository":{"id":112775655,"uuid":"525254166","full_name":"AdyGCode/Learning-HTML-CSS-JS","owner":"AdyGCode","description":"Learning HTML, CSS and JavaScript for Web Technologies Cluster - ICT40120 Certificate IV in Information Technology 😊","archived":false,"fork":false,"pushed_at":"2022-08-16T10:04:27.000Z","size":1533,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-08T10:04:45.082Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/AdyGCode.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-08-16T06:17:59.000Z","updated_at":"2022-08-16T06:36:33.000Z","dependencies_parsed_at":"2023-03-14T18:00:36.144Z","dependency_job_id":null,"html_url":"https://github.com/AdyGCode/Learning-HTML-CSS-JS","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AdyGCode/Learning-HTML-CSS-JS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdyGCode%2FLearning-HTML-CSS-JS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdyGCode%2FLearning-HTML-CSS-JS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdyGCode%2FLearning-HTML-CSS-JS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdyGCode%2FLearning-HTML-CSS-JS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AdyGCode","download_url":"https://codeload.github.com/AdyGCode/Learning-HTML-CSS-JS/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdyGCode%2FLearning-HTML-CSS-JS/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28843948,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T07:39:25.367Z","status":"ssl_error","status_checked_at":"2026-01-28T07:39:24.487Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2025-01-22T00:17:16.939Z","updated_at":"2026-01-28T09:36:49.570Z","avatar_url":"https://github.com/AdyGCode.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Learning HTML, CSS and JS with Ady\n\nDescription here...\n\n## Folder Structure\n\nThe following is an extract fo the site folder structure.\n\n```text\nRoot -+- index.html\n      |\n      +- ReadMe.md\n      |\n      +- about -+- index.html\n      |\n      +- assets -+- js -+-\n                 |\n                 +- css -+- site.css\n                 |\n                 +- img -+- \n                 |\n                 +- media -+- \n```\n\nIn Webstorm the following will render as a mind-map diagram showing the folders and files. \n\n```plantuml\n@startmindmap\n\n* Root/Project Folder\n *_ index.html\n *_ ReadMe.md\n *_ CheatSheet.md\n * about\n  *_ index.html\n * assets\n  * css\n   *_ site.css\n   *_ reset.css\n  * img\n   *_ .keep\n  * js\n   *_ .keep\n  * fonts\n   *_ .keep\n  * media\n   *_ .keep\n * ...folder_name...\n  *_ .keep\n\n@endmindmap\n```\n\n## .gitignore\n\nCreate .gitignore with required file patterns.\n\u003e Use the plugin: .ignore in JetBrains IDEs\n\u003e \n\u003e `CTRL`+`ALT`+`S` (on Windows) to open settings\n\u003e \n\u003e Click the Plugins option (on left side)\n\u003e \n\u003e Click on Marketplace to search for plugins not installed.\n\u003e \n\u003e In the search box at the top type in a word that may be\n\u003e part of the plugin needed, eg. ignore\n\u003e \n\u003e Locate the option and click INSTALL\n\u003e\n\u003e Click OK when all required plugins are installed.\n\u003e Sometimes the IDE will need to restart to apply the changes.\n\n## Adding the .gitignore\n\nRight mosue button on the Project Name\n\nFile\n\nNew\n\n.ignore\n\nGitIgnore (at top)\n\n![img.png](img.png)\n\nSelect the options below\n\n![img_1.png](img_1.png)\n\nEdit the .gitignore file and add at the top:\n\n![img_2.png](img_2.png)\n\n\n## .keep\nThis file is used to force folders that are 'empty' to be committed...\n\nAdd to any folder you need to be added to version control but may not \nbe using immediately.\n\nCreate it as a New Text file with the filename `.keep`.\n\n\n\n### Useful Plugins\n- .ignore\n- CSV\n- Rainbow Brackets\n- Indent Rainbow\n- JSON Helper\n- Markdown Editor\n- Paste Images into Markdown\n- Zero Width Character locator\n- Yet another emoji support\n- GitToolBox\n- Extra ToolWindow Colorful Icons\n- Atom Material Icons\n- .env files support\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadygcode%2Flearning-html-css-js","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadygcode%2Flearning-html-css-js","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadygcode%2Flearning-html-css-js/lists"}