generated from CodeYourFuture/Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 220
Sheffield | ITP2025 | Yousef | Wireframe #421
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
R7Yos
wants to merge
3
commits into
CodeYourFuture:main
Choose a base branch
from
R7Yos:Wireframe
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+244
−91
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,111 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Wireframe</title> | ||
<link rel="stylesheet" href="style.css" /> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Wireframe</h1> | ||
<p> | ||
This is the default, provided code and no changes have been made yet. | ||
</p> | ||
</header> | ||
<main> | ||
<article> | ||
<img src="placeholder.svg" alt="" /> | ||
<h2>Title</h2> | ||
<p> | ||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, | ||
voluptates. Quisquam, voluptates. | ||
</p> | ||
<a href="">Read more</a> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Wireframe</title> | ||
<link rel="stylesheet" href="style.css" /> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
<header> | ||
<h1>Wireframe</h1> | ||
</header> | ||
|
||
<nav> | ||
<a href="#readme">README.FILE</a> | ||
<a href="#wireframe">Wireframe</a> | ||
<a href="#branch">Branch in Git</a> | ||
</nav> | ||
<div class="hero"> | ||
<h2>Welcome to the Wireframe Page</h2> | ||
<p>Explore the purpose of a wireframe and its significance in web design.</p> | ||
|
||
<main> | ||
|
||
<article id="readme"> | ||
<img src="README.FILE.png" alt="README File Image"> | ||
<div class="content"> | ||
<h2>README.FILE</h2> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "README.FILE" would suggest you are referring to a file named exactly "README.FILE". "README File" would probably be more appropriate. |
||
<h3>What is the purpose of a README file?</h3> | ||
<p>The purpose of a README file is to introduce and explain a project.</p> | ||
<ul> | ||
<li>Project overview – what it does and why it exists</li> | ||
<li>Installation instructions – how to set it up and run it</li> | ||
<li>Usage guide – examples of how to use it</li> | ||
<li>Contribution guidelines – how others can contribute</li> | ||
<li>License and credits – legal info and acknowledgments</li> | ||
</ul> | ||
|
||
<!-- Read more functionality using <details> and <summary> --> | ||
<details> | ||
<summary>Read more</summary> | ||
<p>In short, a README acts as the front page of a project, helping others quickly understand and interact with it.</p> | ||
</details> | ||
</div> | ||
</article> | ||
|
||
<!-- Flex container to place Branch and Wireframe articles next to each other --> | ||
<div class="flex-container"> | ||
|
||
<article id="wireframe"> | ||
<img src="wf.png" alt="Wireframe Image"> | ||
<div class="content"> | ||
<h2>Wireframe</h2> | ||
<h3>What is the purpose of a wireframe?</h3> | ||
<p>The purpose of a wireframe is to serve as a blueprint for a website or application’s layout and structure. It’s a visual guide that outlines the placement of key elements like headers, navigation, content sections, buttons, and images without focusing on design details like color or typography.</p> | ||
<ul> | ||
<li>Clarifies layout and functionality</li> | ||
<li>Facilitates communication among team members</li> | ||
<li>Helps identify potential usability issues early</li> | ||
<li>Saves time and resources in the design process</li> | ||
</ul> | ||
|
||
<!-- Read more functionality using <details> and <summary> --> | ||
<details> | ||
<summary>Read more</summary> | ||
<p>Wireframes help teams focus on how something works before deciding how it looks.</p> | ||
</details> | ||
</div> | ||
</article> | ||
</main> | ||
<footer> | ||
<p> | ||
This is the default, provided code and no changes have been made yet. | ||
</p> | ||
</footer> | ||
</body> | ||
|
||
<article id="branch"> | ||
<img src="branch.png" alt="Branch in Git Image"> | ||
<div class="content"> | ||
<h2>Branch in Git</h2> | ||
<h3>What is a branch in Git?</h3> | ||
<p>A branch in Git is a pointer to a specific line of development in your project. It allows you to work on features, fixes, or experiments in isolation from the main codebase.</p> | ||
<ul> | ||
<li>Branches enable parallel development.</li> | ||
<li>They help keep the main codebase stable.</li> | ||
<li>Branches can be merged back into the main branch once changes are complete and tested.</li> | ||
</ul> | ||
|
||
<!-- Read more functionality using <details> and <summary> --> | ||
<details> | ||
<summary>Read more</summary> | ||
<p>In essence, branches are a powerful feature of Git that facilitate collaborative and organized software development.</p> | ||
</details> | ||
</div> | ||
</article> | ||
|
||
</div> | ||
|
||
</main> | ||
|
||
<footer> | ||
<p>© 2025 designed by Yousef. All rights reserved.</p> | ||
<p> | ||
<a href="#">Privacy Policy</a> | | ||
<a href="#">Terms of Service</a> | | ||
<a href="#">Contact Us</a> | ||
</p> | ||
</footer> | ||
|
||
</body> | ||
|
||
</html> | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are some errors in your HTML code.
It's a good practice to use an HTML validator to check our HTML code for errors and ensure it follows web standards.
Can you ensure your code is free of errors?