Skip to content
Open
Show file tree
Hide file tree
Changes from 23 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.
49 changes: 35 additions & 14 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,48 @@
<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="" />
Comment thread
Ebrahim-Moqbel marked this conversation as resolved.
Outdated
<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">Read more</a>
Comment thread
Ebrahim-Moqbel marked this conversation as resolved.
Outdated
</article>

<article>
<img src="/Wireframe/img/git.jpg" alt="">
<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">Read more</a>

</article>


<article>
<img src="/Wireframe/img/wireframe.png" alt="" />
<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/" >Read more</a>

</article>

</main>
<footer>
<p>
This is the default, provided code and no changes have been made yet.
</p>
<footer class="footer">
<p>This website is made by Ebrahim Moqbel </p>
</footer>
</body>
</html>
130 changes: 74 additions & 56 deletions Wireframe/style.css
Original file line number Diff line number Diff line change
@@ -1,89 +1,107 @@
/* Here are some starter styles
You can edit these or replace them entirely
It's showing you a common way to organise CSS
And includes solutions to common problems
As well as useful links to learn more */

/* ====== Design Palette ======
This is our "design palette".
It sets out the colours, fonts, styles etc to be used in this design
At work, a designer will give these to you based on the corporate brand, but while you are learning
You can design it yourself if you like
Inspect the starter design with Devtools
Click on the colour swatches to see what is happening
I've put some useful CSS you won't have learned yet
For you to explore and play with if you are interested
https://web.dev/articles/min-max-clamp
https://scrimba.com/learn-css-variables-c026
====== Design Palette ====== */
/* ====== Design Palette ====== */
:root {
--paper: oklch(7 0 0);
--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 ======
General rules for basic HTML elements in any context */

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

a {
padding: var(--space);
border: var(--line);
max-width: fit-content;
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;
}
/* ====== Site Layout ======
Setting the overall rules for page regions
https://www.w3.org/WAI/tutorials/page-structure/regions/
*/
main {
max-width: var(--container);
margin: 0 auto calc(var(--space) * 4) auto;
}
footer {
position: fixed;
bottom: 0;

/* ====== 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;
}
/* ====== Articles Grid Layout ====
Setting the rules for how articles are placed in the main element.
Inspect this in Devtools and click the "grid" button in the Elements view
Play with the options that come up.
https://developer.chrome.com/docs/devtools/css/grid
https://gridbyexample.com/learn/
*/

/* ====== 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);
> *:first-child {
grid-column: span 2;
}
padding: 0 var(--space);
}
/* ====== Article Layout ======
Setting the rules for how elements are placed in the article.
Now laying out just the INSIDE of the repeated card/article design.
Keeping things orderly and separate is the key to good, simple CSS.
*/

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);
> * {
grid-column: 2/3;
}
> img {
grid-column: span 3;
}
}

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

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

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

/* ====== Footer ====== */
.footer {
Comment thread
Ebrahim-Moqbel marked this conversation as resolved.
Outdated
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