{"id":35240875,"url":"https://github.com/harrystaley/fend_aboutme","last_synced_at":"2026-03-17T20:04:08.342Z","repository":{"id":86180115,"uuid":"48273430","full_name":"harrystaley/FEND_AboutMe","owner":"harrystaley","description":"A beginner-friendly project for learning HTML and CSS, where you personalize an \"About Me\" webpage by editing content and styling elements to create a visually appealing profile. Perfect for those new to web development, this exercise helps reinforce fundamental frontend skills.","archived":false,"fork":false,"pushed_at":"2025-04-12T08:53:38.000Z","size":4088,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-12T09:39:52.325Z","etag":null,"topics":["css","design","frontend","html","layout","markup","styles","web"],"latest_commit_sha":null,"homepage":"","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/harrystaley.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":"2015-12-19T07:48:57.000Z","updated_at":"2025-04-12T08:53:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"bdd6b61a-f64b-4a8a-b3ad-71b3c45eb1a1","html_url":"https://github.com/harrystaley/FEND_AboutMe","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/harrystaley/FEND_AboutMe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/harrystaley%2FFEND_AboutMe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/harrystaley%2FFEND_AboutMe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/harrystaley%2FFEND_AboutMe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/harrystaley%2FFEND_AboutMe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/harrystaley","download_url":"https://codeload.github.com/harrystaley/FEND_AboutMe/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/harrystaley%2FFEND_AboutMe/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30630034,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T17:32:55.572Z","status":"ssl_error","status_checked_at":"2026-03-17T17:32:38.732Z","response_time":56,"last_error":"SSL_read: 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":["css","design","frontend","html","layout","markup","styles","web"],"created_at":"2025-12-30T05:01:04.298Z","updated_at":"2026-03-17T20:04:08.337Z","avatar_url":"https://github.com/harrystaley.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FEND_AboutMe\n\n## Project Overview\n\nFEND_AboutMe is a beginner-friendly project designed to help new developers gain hands-on experience with HTML and CSS. This project involves creating a personalized \"About Me\" webpage where participants can edit content and apply various styling techniques to design a visually appealing profile. It is an excellent way for beginners to practice and reinforce their frontend development skills including understanding of HTML markup, CSS styles, and overall web design principles.\n\n### Project Structure\n\nThe project is structured into several key files:\n- `index.html`: The main HTML file where you will add your personal information and structure your webpage.\n- `styles.css`: This CSS file is used to style the HTML elements in `index.html`. You will edit this file to customize the look of your webpage.\n- `images/`: A directory where you can store images you wish to include on your webpage.\n- `README.md`: Provides project information and instructions.\n\n## Setup Instructions\n\n### Prerequisites\nTo get started with this project, you'll need:\n- A web browser (e.g., Google Chrome, Mozilla Firefox, Safari)\n- A code editor (e.g., VS Code, Sublime Text, Atom)\n\n### Installation\n1. Clone the repository to your local machine:\n   ```bash\n   git clone https://github.com/your-username/FEND_AboutMe.git\n   ```\n2. Navigate to the project directory:\n   ```bash\n   cd FEND_AboutMe\n   ```\n3. Open the `index.html` file in your web browser to view the webpage.\n4. Use your code editor to modify and save changes to the HTML and CSS files.\n\n## Usage\n\nTo use this project, simply follow these steps:\n1. Open the `index.html` and `styles.css` files in your code editor.\n2. Replace the placeholder content in `index.html` with your personal information, such as your name, biography, and contact details.\n3. Customize the styles in `styles.css` to design your page. You might change the colors, fonts, layout, and other styles.\n4. Save your changes and refresh the browser to see the updates.\n\n### Example Changes\n- In `styles.css`, change the background color:\n  ```css\n  body {\n      background-color: #f0f0f2;\n  }\n  ```\n- In `index.html`, add a new section about your hobbies:\n  ```html\n  \u003csection\u003e\n      \u003ch2\u003eHobbies\u003c/h2\u003e\n      \u003cp\u003eHere, I like to write about my hobbies...\u003c/p\u003e\n  \u003c/section\u003e\n  ```\n\n## Contributing\n\nContributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n\n1. Fork the Project\n2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the Branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## License\n\nThis project is open source and available under the [MIT License](LICENSE.md).\n\n---\n\nFeel free to clone this project and personalize your own \"About Me\" page while learning the fundamentals of web development!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fharrystaley%2Ffend_aboutme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fharrystaley%2Ffend_aboutme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fharrystaley%2Ffend_aboutme/lists"}