Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
53 changes: 53 additions & 0 deletions Wireframe/explain.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!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>Here find the answer to the below questions:</h1>
</header>
<main>
<article>
<img src="placeholder.svg" alt="" />
<h2>What is the purpose of a README file?</h2>
<p>
It is the billboard of the repository, it give some general and
technical information about the repo such as:
</p>
<ol>
<li>What the repo is about.</li>
<li>What problem it solves.</li>
<li>How to install and use it.</li>
<li>how to contribute.</li>
</ol>
<p>
Basically, all the data a person using the repo should know, can go
here.
</p>
</article>
<article>
<img src="placeholder.svg" alt="" />
<h2>What is the purpose of a wireframe?</h2>
<p>
It specifies the structure of a page and how different sections get in
place next to each other.
</p>
</article>
<article>
<img src="placeholder.svg" alt="" />
<h2>What is a branch in Git?</h2>
<p>
It is an absolute separate line from the main branch of a project,
which can be changed without affecting the main branch.
</p>
</article>
</main>
<footer>
<p>Copyright Mohsen Zamani - ITP Jan 2026</p>
</footer>
</body>
</html>
15 changes: 8 additions & 7 deletions Wireframe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@
</head>
<body>
<header>
<h1>Wireframe</h1>
<p>
This is the default, provided code and no changes have been made yet.
</p>
<h1>Mohsen Zamani Wireframe</h1>
<p>This will be my portfolio.</p>
</header>
<main>
<aside>
<a href="#">Home</a>
<a href="#">My repos</a>
<a href="#">About me</a>
</aside>
<article>
<img src="placeholder.svg" alt="" />
<h2>Title</h2>
Expand All @@ -25,9 +28,7 @@ <h2>Title</h2>
</article>
</main>
<footer>
<p>
This is the default, provided code and no changes have been made yet.
</p>
<p>Copyright Mohsen Zamani - ITP Jan 2026</p>
</footer>
</body>
</html>
20 changes: 18 additions & 2 deletions Wireframe/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ As well as useful links to learn more */
--paper: oklch(7 0 0);
--ink: color-mix(in oklab, var(--color) 5%, black);
--font: 100%/1.5 system-ui;
--hover: 50%/2.5 system-ui;
--space: clamp(6px, 6px + 2vw, 15px);
--line: 1px solid;
--container: 1280px;
Expand Down Expand Up @@ -65,9 +66,23 @@ main {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space);
> *:first-child {
/* > *:first-child {
grid-column: span 2;
}
} */
}

aside {
display: flex;
flex-direction: column;
background-color: rgb(219, 222, 225);
border: var(--line);
}
a {
text-decoration: none;
border: 0;
}
a:hover {
color: var(--hover);
}
/* ====== Article Layout ======
Setting the rules for how elements are placed in the article.
Expand All @@ -85,5 +100,6 @@ article {
}
> img {
grid-column: span 3;
max-width: 100%;
}
}