{"id":26780590,"url":"https://github.com/n4vrl0s3/basic-hypertext-markup-language","last_synced_at":"2025-03-29T07:17:13.537Z","repository":{"id":276106708,"uuid":"928233941","full_name":"n4vrl0s3/Basic-Hypertext-Markup-Language","owner":"n4vrl0s3","description":"Basic Hypertext Markup Language (HTML)","archived":false,"fork":false,"pushed_at":"2025-03-17T01:34:06.000Z","size":28,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-28T07:01:56.123Z","etag":null,"topics":["html","html5","tutorial"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/n4vrl0s3.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["guanshiyin28"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2025-02-06T09:43:47.000Z","updated_at":"2025-03-17T01:34:10.000Z","dependencies_parsed_at":"2025-03-09T22:39:12.339Z","dependency_job_id":null,"html_url":"https://github.com/n4vrl0s3/Basic-Hypertext-Markup-Language","commit_stats":null,"previous_names":["guanshiyin28/basic-hypertext-markup-language","n4vrl0s3/basic-hypertext-markup-language"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n4vrl0s3%2FBasic-Hypertext-Markup-Language","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n4vrl0s3%2FBasic-Hypertext-Markup-Language/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n4vrl0s3%2FBasic-Hypertext-Markup-Language/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n4vrl0s3%2FBasic-Hypertext-Markup-Language/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/n4vrl0s3","download_url":"https://codeload.github.com/n4vrl0s3/Basic-Hypertext-Markup-Language/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246150451,"owners_count":20731419,"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","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","html5","tutorial"],"created_at":"2025-03-29T07:17:12.992Z","updated_at":"2025-03-29T07:17:13.531Z","avatar_url":"https://github.com/n4vrl0s3.png","language":"HTML","readme":"# Basic Hypertext Markup Language (HTML)\n\nThis repository contains the source code for a basic HTML project demonstrating the fundamental concepts and structure of HTML. This project is designed to help beginners understand how to create simple web pages using HTML.\n\n\u003chr\u003e\u003cbr\u003e\n\n## Purpose of This Repository\n\nTo provide a foundational understanding of HTML and demonstrate how to create basic web pages with various HTML elements.\n\n\u003chr\u003e\u003cbr\u003e\n\n## Demonstration\n\nBelow is a demonstration of a simple HTML structure:\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.0\" /\u003e\n    \u003ctitle\u003eBasic HTML Page\u003c/title\u003e\n  \u003c/head\u003e\n  \u003cbody\u003e\n    \u003cheader\u003e\n      \u003ch1\u003eWelcome to My Website\u003c/h1\u003e\n    \u003c/header\u003e\n    \u003cnav\u003e\n      \u003cul\u003e\n        \u003cli\u003e\u003ca href=\"#home\"\u003eHome\u003c/a\u003e\u003c/li\u003e\n        \u003cli\u003e\u003ca href=\"#about\"\u003eAbout\u003c/a\u003e\u003c/li\u003e\n        \u003cli\u003e\u003ca href=\"#contact\"\u003eContact\u003c/a\u003e\u003c/li\u003e\n      \u003c/ul\u003e\n    \u003c/nav\u003e\n    \u003cmain\u003e\n      \u003csection id=\"home\"\u003e\n        \u003ch2\u003eHome\u003c/h2\u003e\n        \u003cp\u003eThis is the home section.\u003c/p\u003e\n      \u003c/section\u003e\n      \u003csection id=\"about\"\u003e\n        \u003ch2\u003eAbout\u003c/h2\u003e\n        \u003cp\u003eThis is the about section.\u003c/p\u003e\n      \u003c/section\u003e\n      \u003csection id=\"contact\"\u003e\n        \u003ch2\u003eContact\u003c/h2\u003e\n        \u003cp\u003eThis is the contact section.\u003c/p\u003e\n      \u003c/section\u003e\n    \u003c/main\u003e\n    \u003cfooter\u003e\n      \u003cp\u003e\u0026copy; 2023 My Website\u003c/p\u003e\n    \u003c/footer\u003e\n  \u003c/body\u003e\n\u003c/html\u003e\n```\n\n\u003chr\u003e\u003cbr\u003e\n\n## Features\n\n- Basic HTML structure\n- Header, navigation, main content, and footer sections\n- Simple navigation links\n- Responsive design with meta viewport tag\n\n\u003chr\u003e\u003cbr\u003e\n\n## Technologies Used\n\n- HTML5\n\n\u003chr\u003e\u003cbr\u003e\n\n## Project Setup\n\n1. **Clone this Repository**\n\n```bash\ngit clone https://github.com/n4vrl0s3/Basic-HTML-Project.git\n```\n\n2. **Open the project in your preferred code editor**\n\n\u003chr\u003e\u003cbr\u003e\n\n## Steps to Run\n\n1. **Open the project in your preferred code editor**\n2. **Open the `index.html` file in a web browser to view the web page**\n\n\u003chr\u003e\u003cbr\u003e\n\n## License\n\nThis project is licensed under the Apache-2.0 License. See the [LICENSE](LICENSE) file for details.\n\n\u003chr\u003e\u003cbr\u003e\n\n\u003cdiv align=\"center\"\u003e\n   \u003ca href=\"https://www.instagram.com/n4vrl0s3/\"\u003e\n      \u003cimg src=\"https://capsule-render.vercel.app/api?type=waving\u0026height=200\u0026color=100:393E46,20:F7F7F7\u0026section=footer\u0026reversal=false\u0026textBg=false\u0026fontAlignY=50\u0026descAlign=48\u0026descAlignY=59\"/\u003e\n   \u003c/a\u003e\n\u003c/div\u003e\n","funding_links":["https://github.com/sponsors/guanshiyin28"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn4vrl0s3%2Fbasic-hypertext-markup-language","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fn4vrl0s3%2Fbasic-hypertext-markup-language","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn4vrl0s3%2Fbasic-hypertext-markup-language/lists"}