Skip to content

Commit a4bd668

Browse files
Answered 3 questions
1 parent 8d62c98 commit a4bd668

File tree

2 files changed

+54
-1
lines changed

2 files changed

+54
-1
lines changed

Wireframe/explain.html

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Wireframe</title>
7+
<link rel="stylesheet" href="style.css" />
8+
</head>
9+
<body>
10+
<header>
11+
<h1>Here find the answer to the below questions:</h1>
12+
</header>
13+
<main>
14+
<article>
15+
<img src="placeholder.svg" alt="" />
16+
<h2>What is the purpose of a README file?</h2>
17+
<p>
18+
It is the billboard of the repository, it give some general and
19+
technical information about the repo such as:
20+
</p>
21+
<ol>
22+
<li>What the repo is about.</li>
23+
<li>What problem it solves.</li>
24+
<li>How to install and use it.</li>
25+
<li>how to contribute.</li>
26+
</ol>
27+
<p>
28+
Basically, all the data a person using the repo should know, can go
29+
here.
30+
</p>
31+
</article>
32+
<article>
33+
<img src="placeholder.svg" alt="" />
34+
<h2>What is the purpose of a wireframe?</h2>
35+
<p>
36+
It specifies the structure of a page and how different sections get in
37+
place next to each other.
38+
</p>
39+
</article>
40+
<article>
41+
<img src="placeholder.svg" alt="" />
42+
<h2>What is a branch in Git?</h2>
43+
<p>
44+
It is an absolute separate line from the main branch of a project,
45+
which can be changed without affecting the main branch.
46+
</p>
47+
</article>
48+
</main>
49+
<footer>
50+
<p>Copyright Mohsen Zamani - ITP Jan 2026</p>
51+
</footer>
52+
</body>
53+
</html>

Wireframe/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ https://gridbyexample.com/learn/
6464
*/
6565
main {
6666
display: grid;
67-
grid-template-columns: 1fr 4fr;
67+
grid-template-columns: 1fr 1fr;
6868
gap: var(--space);
6969
/* > *:first-child {
7070
grid-column: span 2;

0 commit comments

Comments
 (0)