{"id":19598545,"url":"https://github.com/kaplanh/hangman-game","last_synced_at":"2025-08-17T13:12:40.973Z","repository":{"id":220668073,"uuid":"650931234","full_name":"kaplanh/Hangman-Game","owner":"kaplanh","description":null,"archived":false,"fork":false,"pushed_at":"2024-02-03T13:47:51.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-26T15:16:10.448Z","etag":null,"topics":["html-css-javascript","includes","length","push","replace","split","strings-manipulation","svg"],"latest_commit_sha":null,"homepage":"https://kaplanh.github.io/Hangman-Game/","language":"JavaScript","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/kaplanh.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}},"created_at":"2023-06-08T05:58:10.000Z","updated_at":"2024-02-03T13:51:27.000Z","dependencies_parsed_at":"2024-02-03T14:28:34.920Z","dependency_job_id":"4b34f3c5-908d-48d1-93a3-99c19515b36e","html_url":"https://github.com/kaplanh/Hangman-Game","commit_stats":null,"previous_names":["kaplanh/adam-asma-oyunu"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kaplanh/Hangman-Game","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaplanh%2FHangman-Game","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaplanh%2FHangman-Game/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaplanh%2FHangman-Game/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaplanh%2FHangman-Game/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kaplanh","download_url":"https://codeload.github.com/kaplanh/Hangman-Game/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kaplanh%2FHangman-Game/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270851886,"owners_count":24656768,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"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":["html-css-javascript","includes","length","push","replace","split","strings-manipulation","svg"],"created_at":"2024-11-11T09:06:37.381Z","updated_at":"2025-08-17T13:12:40.920Z","avatar_url":"https://github.com/kaplanh.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"#  Hangman Game\n\n![hangman game](https://github.com/kaplanh/Hangman-Game/assets/101884444/2ffb1b93-5025-4266-809c-fe78343e503a)\n\n[Live Link!](https://kaplanh.github.io/Hangman-Game/)\n\n## Problem Statement\n\n- Your company has recently started on a project that aims to create a Hangman Game. So you and your colleagues have started to work on the project.\n\n\n## Project Skeleton \n\n```\n- Hangman Game(folder)\n|\n|----readme.md                 \n|----index.html  \n|----style.css   \n|----script.js\n\n```\n\n### At the end of the project, following topics are to be covered;\n\n- HTML\n  - svg\n     ~~~\n     \u003csvg height=\"250\" width=\"250\" class=\"grafik\"\u003e\n            \u003c!--! sehpa --\u003e\n            \u003cline x1=\"50\" y1=\"20\" x2=\"130\" y2=\"20\"/\u003e\n            \u003cline x1=\"130\" y1=\"20\" x2=\"130\" y2=\"50\"/\u003e\n            \u003cline x1=\"50\" y1=\"20\" x2=\"50\" y2=\"250\"/\u003e\n            \u003cline x1=\"10\" y1=\"250\" x2=\"90\" y2=\"250\"/\u003e\n\n            \u003c!-- !kafa --\u003e\n            \u003ccircle cx=\"130\" cy=\"70\" r=\"20\" class=\"item\"/\u003e\n\n            \u003c!-- !gövde --\u003e\n            \u003cline x1=\"130\" y1=\"90\" x2=\"130\" y2=\"170\" class=\"item\"/\u003e\n\n            \u003c!-- !kollar --\u003e\n            \u003cline x1=\"130\" y1=\"120\" x2=\"100\" y2=\"100\"  class=\"item\"/\u003e\n            \u003cline x1=\"130\" y1=\"120\" x2=\"160\" y2=\"100\" class=\"item\"/\u003e\n\n            \u003c!-- !bacaklar --\u003e\n            \u003cline x1=\"130\" y1=\"170\" x2=\"100\" y2=\"190\" class=\"item\"/\u003e\n            \u003cline x1=\"130\" y1=\"170\" x2=\"160\" y2=\"190\" class=\"item\"/\u003e\n        \u003c/svg\u003e\n     ~~~ \n\n- CSS\n  - flexbox\n  - position\n     - rerlative\n     - fixed\n     - absolute\n  -  SVG fill, stroke\n    ~~~css\n    .grafik {\n        fill: transparent;\n        stroke: #fff;\n        stroke-width: 4px;\n          }\n    ~~~\n\n  -  transform:translateX(deg%)\n     ~~~\n     transform: translateX(-50%);\n     ~~~\n- JS\n  - DOM manipulation\n  - string methods\n    -  length\n    -  includes\n    -  replace\n    -  splice\n    -  push\n  \n  \n\n- ### At the end of the project, developers will be able to;\n\n- improve coding skills within HTML \u0026 CSS \u0026 JS\n\n- use git commands (push, pull, commit, add etc.) and Github as Version Control System.\n\n\n## Notes\n\n-   You can use HTML, CSS and JS to complete this project.\n\n  \u003ccenter\u003e ⌛ Happy Coding  ✍ \u003c/center\u003e\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaplanh%2Fhangman-game","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkaplanh%2Fhangman-game","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkaplanh%2Fhangman-game/lists"}