Skip to content

London | 26-ITP-May | Hugh Mills | Sprint 2 | Wireframe to web code#1405

Open
HM-127BTY wants to merge 5 commits into
CodeYourFuture:mainfrom
HM-127BTY:feture/wireframe
Open

London | 26-ITP-May | Hugh Mills | Sprint 2 | Wireframe to web code#1405
HM-127BTY wants to merge 5 commits into
CodeYourFuture:mainfrom
HM-127BTY:feture/wireframe

Conversation

@HM-127BTY
Copy link
Copy Markdown

@HM-127BTY HM-127BTY commented Jun 3, 2026

Learners, PR Template

Self checklist

  • I have titled my PR with Region | Cohort | FirstName LastName | Sprint | Assignment Title
  • My changes meet the requirements of the task
  • I have tested my changes
  • My changes follow the style guide

Changelist

Using the Wireframe I was able to create the website to match the style required and filled out the information that was required.

HM-127BTY added 3 commits May 16, 2026 15:00
Added images and text to main artiles, added links.
Added footer info.
added styles for footer.
@netlify
Copy link
Copy Markdown

netlify Bot commented Jun 3, 2026

Deploy Preview for cyf-onboarding-module ready!

Name Link
🔨 Latest commit c2c02e0
🔍 Latest deploy log https://app.netlify.com/projects/cyf-onboarding-module/deploys/6a202cd22f186d000888293f
😎 Deploy Preview https://deploy-preview-1405--cyf-onboarding-module.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
2 paths audited
Performance: 100 (no change from production)
Accessibility: 100 (no change from production)
Best Practices: 100 (no change from production)
SEO: 86 (no change from production)
PWA: -
View the detailed breakdown and full score reports
🤖 Make changes Run an agent on this branch

To edit notification comments on pull requests, go to your Netlify project configuration.

@github-actions

This comment has been minimized.

@HM-127BTY HM-127BTY added 📅 Sprint 2 Assigned during Sprint 2 of this module Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. labels Jun 3, 2026
@github-actions

This comment has been minimized.

@github-actions github-actions Bot removed the Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. label Jun 3, 2026
@github-actions

This comment has been minimized.

@HM-127BTY HM-127BTY closed this Jun 3, 2026
@HM-127BTY
Copy link
Copy Markdown
Author

removed extra image file, changed to image link from wiki page.

@HM-127BTY HM-127BTY reopened this Jun 3, 2026
@github-actions

This comment has been minimized.

1 similar comment
@github-actions

This comment has been minimized.

@HM-127BTY HM-127BTY added the Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. label Jun 3, 2026
@akeren akeren added Review in progress This review is currently being reviewed. This label will be replaced by "Reviewed" soon. Module-Onboarding The name of the module. and removed Needs Review Trainee to add when requesting review. PRs without this label will not be reviewed. labels Jun 5, 2026
@akeren akeren self-requested a review June 5, 2026 08:28
Copy link
Copy Markdown

@akeren akeren left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@HM-127BTY, your codebase structure is currently simple and easy to follow, with just two files: index.html and style.css kept in the same root directory.

As your projects grow, what might happen if you later add more CSS files, JavaScript files, images, or multiple HTML pages? How could you organise your folders so the project stays easy to navigate, scalable and maintainable now and in the future?

Comment thread Wireframe/index.html
<p>A Branch in git is a copy of the main folder where there has been edits or fixes done to in a controlled manner that can then be implemented to the main folder in due time.
</p>
<a href="">Read more</a>
<a href="https://en.wikipedia.org/wiki/Branching_(version_control)">Read more</a>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@HM-127BTY, why is this anchor link UI different from the rest?

Comment thread Wireframe/index.html
</article>
<article id="2nd">
<img src="https://cdn.prod.website-files.com/64fa82cbdeed167ebaefef84/64fa868c41d7a2600b45a4d5_606de8872932076fce79ad0f_TL5vrIkw1V7VYfqA3lvvi313PuvWyzIJtAQ4HthZnsXuYXQTC4rQhEcyq40qZaYDYpBHtnnPJ0PhnmBuJ9XRLnWMrlzZE9IXIfyvYan4Xj3woYXuTrAC7kTgydlqIADE8A26ITwb.png" alt="shetched images showing a plan for desnining a website, showing areas for an image, video player and other boxes for feature text and information." >
<!-- Image from https://www.flux-academy.com/blog/20-wireframe-examples-for-web-design to help show wireframe-->
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@HM-127BTY, could you explain why you're pushing commented code to a production environment?

Comment thread Wireframe/index.html
</article>
<article id="3rd">
<img src="https://docs.wavemaker.com/learn/assets/images/branching-model-121bd320dd2f5972a5f6ce2fb19a3f4e.png" alt="Connection blue balls in a straight line starting from one called Master then connection to others with lined arrow, from First is extra arrow goign up to red balls labed Bugfix then back down to third blue ball, from 2nd blue ball extra arrow goes down to two green balls labed Feature then back to last blue ball." >
<!-- Image from https://docs.wavemaker.com/learn/blog/2021/09/17/git-branching-strategy/ to aid in display of Git Branch-->
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@HM-127BTY, could you explain why you're pushing commented code to a production environment?

Comment thread Wireframe/style.css
Comment on lines +52 to 77
header {
text-align:center;
max-width: fit-content;
margin-left: auto;
margin-right: auto;
}
h1 {
text-align:center;
font-size: 4em;
max-width: fit-content;
font-weight: bold;
font-family: 'Times New Roman', Times, serif;
}
#top-comment {
text-align:center;
margin-bottom: 20px;
}
footer {
position: fixed;
bottom: 0;
text-align: center;
color: white;
padding-top: 10px;
background-color: rgb(28, 77, 127);
width:100%
}
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@HM-127BTY, how could you improve the readability and the separation between blocks of code?

Comment thread Wireframe/index.html
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
<article id="1st">
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@HM-127BTY, could you think of a better name for this id?

Comment thread Wireframe/index.html
</p>
<a href="https://en.wikipedia.org/wiki/README">Read more</a>
</article>
<article id="2nd">
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@HM-127BTY, could you think of a better name for this id?

Comment thread Wireframe/index.html
</p>
<a href="https://en.wikipedia.org/wiki/Website_wireframe">Read more</a>
</article>
<article id="3rd">
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@HM-127BTY, could you think of a better name for this id?

@akeren akeren added Reviewed Volunteer to add when completing a review with trainee action still to take. and removed Review in progress This review is currently being reviewed. This label will be replaced by "Reviewed" soon. labels Jun 5, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Module-Onboarding The name of the module. Reviewed Volunteer to add when completing a review with trainee action still to take. 📅 Sprint 2 Assigned during Sprint 2 of this module

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants