Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
106549d
Git difinition and purpose
Ebrahim-Moqbel Jan 13, 2026
08737b5
Git difinition and purpose
Ebrahim-Moqbel Jan 13, 2026
9e2e03c
content of the page
Ebrahim-Moqbel Jan 24, 2026
9f59b69
Merge branch 'feature/wireframe' of https://github.com/Ebrahim-Moqbel…
Ebrahim-Moqbel Jan 24, 2026
8eb31fa
Ebrahim-Moqbel Jan 25, 2026
113fdc5
commit
Ebrahim-Moqbel Jan 25, 2026
34db322
Merge branch 'CodeYourFuture:main' into feature/wireframe
Ebrahim-Moqbel Jan 25, 2026
b2b717c
Delete unnecessary readme file
Ebrahim-Moqbel Jan 25, 2026
2e9e44a
Add files via upload
Ebrahim-Moqbel Jan 25, 2026
52684f7
Add files via upload
Ebrahim-Moqbel Jan 25, 2026
ef60105
.
Ebrahim-Moqbel Jan 25, 2026
7ec9964
Add files via upload
Ebrahim-Moqbel Jan 25, 2026
7df260f
images added
Ebrahim-Moqbel Jan 25, 2026
17bcf82
css modified
Ebrahim-Moqbel Jan 25, 2026
9859e3a
centre the footer
Ebrahim-Moqbel Jan 25, 2026
4fe0370
fixed the footer
Ebrahim-Moqbel Jan 25, 2026
fafcdd9
changes in the header
Ebrahim-Moqbel Jan 25, 2026
a76cd4e
changes in the header
Ebrahim-Moqbel Jan 25, 2026
490a6e3
changes to CSS
Ebrahim-Moqbel Jan 25, 2026
b5ce99a
deleted unwanted images from the source file
Ebrahim-Moqbel Jan 26, 2026
3c545a6
changed imges to be in an img file
Ebrahim-Moqbel Feb 7, 2026
64dd101
made changes to the css file
Ebrahim-Moqbel Feb 7, 2026
48b9f84
changed the article tag fromheader from
Ebrahim-Moqbel Feb 7, 2026
1a09438
Update alt text for images in index.html
Ebrahim-Moqbel Aug 5, 2026
1c81560
Add target='_blank' to external links in index.html
Ebrahim-Moqbel Aug 5, 2026
c8c7098
Add meta description to index.html
Ebrahim-Moqbel Aug 5, 2026
1b86361
Merge branch 'main' into feature/wireframe
Ebrahim-Moqbel Aug 5, 2026
e1dc8cf
Rename footer class to match HTML structure
Ebrahim-Moqbel Aug 5, 2026
2c397b4
Remove class attribute from footer element
Ebrahim-Moqbel Aug 5, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Wireframe/articles.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
What is Git and why is it used?

Git is a version control system used for tracking changes in computer files. It is generally used for source code management in software development.

Git is used to tracking changes in the source code
The distributed version control tool is used for source code management
It allows multiple developers to work together
It supports non-linear development through its thousands of parallel branches
Binary file added Wireframe/img/README.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Wireframe/img/git.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Wireframe/img/wireframe.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 37 additions & 14 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,54 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description"
content="A page describe the defination of git, readme file and wireframe Usability and for a webpage" />
<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 class="header">
<h1> Web Development concepts</h1>
<p> this page will give you the understanding of README ,Git and Wireframe</p>
</header>
<main>

<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
<img src="/Wireframe/img/README.png" alt="an image says make a readme file because nobody can ready your mind yet" />
<h2>What is the Purpose of a README file</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
voluptates. Quisquam, voluptates.
README files typically include information on what a project does, why is it usefull and how users can get started with the project
and how can they get help with the project...

</p>
<a href="">Read more</a>
<a href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes" target="_blank">Read more</a>
</article>

<article>
<img src="/Wireframe/img/git.jpg" alt=" git logo">
<h2>What is a branch in Git</h2>
<p>
In Git, a branch is like a separate workspace where you can make changes and try new ideas without affecting the main project. Think of it as a "parallel universe" for your code.

</p>
<a href="https://www.w3schools.com/git/git_branch.asp?remote=github" target="_blank" >Read more</a>

</article>


<article>
<img src="/Wireframe/img/wireframe.png" alt="illustraiton representing a website wireframe" />
<h2>What is the purpose of wireframe </h2>
<p>
A wireframe is the skeleton of your digital project. Think of it as the foundation for your website, app, or dashboard. It focuses on layout, and content placement—not on colors, fonts, or any visual polish.
</p>
<a href="https://balsamiq.com/blog/what-are-wireframes/" target="_blank" >Read more</a>

</article>

</main>
<footer>
<p>
This is the default, provided code and no changes have been made yet.
</p>
<footer >
<p>This website is made by Ebrahim Moqbel </p>
</footer>
</body>
</html>
115 changes: 107 additions & 8 deletions Wireframe/style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,107 @@
/*
(Suggestion) Use a top-down approach when applying CSS:
1. Lay out the top-level elements: <header>, <main>, <footer>
2. Lay out the articles within <main>
3. Style individual elements

Please REMOVE this comment before submitting your work.
*/
/* ====== Design Palette ====== */
:root {
--paper: oklch(97% 0 0);
--ink: color-mix(in oklab, var(--color) 5%, black);
--font: 100%/1.5 system-ui;
--space: clamp(6px, 6px + 2vw, 15px);
--line: 1px solid;
--container: 1280px;
}

/* ====== Base Elements ====== */
body {
background: var(--paper);
color: var(--ink);
font: var(--font);
padding-bottom: 60px;
margin: 0;
}

a {
display: inline-block;
padding: 0.5rem 1rem;
background: #333;
color: #fff;
text-decoration: none;
border-radius: 4px;
text-align: center;
margin-top: var(--space);
}

a:hover {
background: #555;
}

img,
svg {
width: 100%;
height: 250px; /* Fixed height for all images */
object-fit: cover;
display: block;
}

/* ====== Header ====== */
.header {
text-align: center;
padding: calc(var(--space) * 2);
background-color: #f6f4f4;
margin-bottom: calc(var(--space) * 2);
}

.header h1 {
margin: 0 0 var(--space) 0;
}

/* ====== Site Layout ====== */
main {
max-width: var(--container);
margin: 0 auto calc(var(--space) * 4) auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space);
padding: 0 var(--space);
}

main > *:first-child {
grid-column: span 2;
}

/* ====== Article Layout ====== */
article {
border: var(--line);
padding-bottom: var(--space);
text-align: left;
display: grid;
grid-template-columns: var(--space) 1fr var(--space);
}

article > * {
grid-column: 2/3;
}

article > img {
grid-column: span 3;
margin-bottom: var(--space);
}

article h2 {
margin-top: var(--space);
}

/* ====== Footer ====== */
footer {
position: fixed;
bottom: 0;
text-align: center;
height: 60px;
background-color: #f6f4f4;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
border-top: var(--line);
}

footer p {
margin: 0;
}
Loading