File tree Expand file tree Collapse file tree 2 files changed +54
-1
lines changed
Expand file tree Collapse file tree 2 files changed +54
-1
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ https://gridbyexample.com/learn/
6464*/
6565main {
6666 display : grid;
67- grid-template-columns : 1fr 4 fr ;
67+ grid-template-columns : 1fr 1 fr ;
6868 gap : var (--space );
6969 /* > *:first-child {
7070 grid-column: span 2;
You can’t perform that action at this time.
0 commit comments