Skip to content

Commit bb05687

Browse files
Complete Wireframe
1 parent 57a3d25 commit bb05687

2 files changed

Lines changed: 60 additions & 10 deletions

File tree

Wireframe/index.html

Lines changed: 27 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,45 @@
77
<link rel="stylesheet" href="style.css" />
88
</head>
99
<body>
10-
<header>
10+
<header class="header">
1111
<h1>Wireframe</h1>
1212
<p>
13-
This is the default, provided code and no changes have been made yet.
13+
This page explains the fundamental concepts of git branches,readme files and wireframe.
1414
</p>
1515
</header>
1616
<main>
1717
<article>
18-
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
18+
<img src="https://729solutions.com/static/e6459251ef6b25937276b12ec626abcd/Featured_Image_Wireframes_Save_Time_Money.png" alt="" />
19+
<h2>Wireframe</h2>
2020
<p>
21-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22-
voluptates. Quisquam, voluptates.
21+
Wireframe is the skeleton of a web page. It represents visual layout which helps developer and other team members to make a decisions about the product.
2322
</p>
24-
<a href="">Read more</a>
23+
<a href="https://www.figma.com/resource-library/what-is-wireframing/">Read more</a>
2524
</article>
25+
26+
<article>
27+
<img src="https://miro.medium.com/v2/resize:fit:4800/format:webp/1*mtsk3fQ_BRemFidhkel3dA.png" alt="" />
28+
<h2>Branch in Git </h2>
29+
<p>
30+
Branch in git is a separate version of main branch used to develop ,edit and test changes before merging into the main branch
31+
</p>
32+
<a href="https://www.w3schools.com/git/git_branch.asp">Read more</a>
33+
</article>
34+
35+
<article>
36+
<img src="https://i.ytimg.com/vi/mb9FJzkwmwg/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLAO86MzvdFL5LsdZl_Udlat6uBIOA" alt="" />
37+
<h2>Readme File </h2>
38+
<p>
39+
Readme file provides important information about the project such as its purpose ,setup instruction,feature and usage.
40+
</p>
41+
<a href="https://www.geeksforgeeks.org/git/what-is-readme-md-file/">Read more</a>
42+
</article>
43+
44+
2645
</main>
2746
<footer>
2847
<p>
29-
This is the default, provided code and no changes have been made yet.
48+
This is the default and practice wireframe.
3049
</p>
3150
</footer>
3251
</body>

Wireframe/style.css

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,15 @@ body {
3030
background: var(--paper);
3131
color: var(--ink);
3232
font: var(--font);
33+
margin: 0px;
3334
}
3435
a {
3536
padding: var(--space);
3637
border: var(--line);
3738
max-width: fit-content;
39+
background-color: rgb(242, 238, 238);
40+
color: black;
41+
border-radius: 2px;
3842
}
3943
img,
4044
svg {
@@ -45,15 +49,37 @@ svg {
4549
Setting the overall rules for page regions
4650
https://www.w3.org/WAI/tutorials/page-structure/regions/
4751
*/
52+
53+
54+
/* This is a header */
55+
.header{
56+
text-align: center;
57+
58+
width: 1240px;
59+
margin-left: 109px;
60+
margin-bottom: -16px;
61+
padding: 20px;
62+
}
63+
64+
65+
66+
4867
main {
4968
max-width: var(--container);
5069
margin: 0 auto calc(var(--space) * 4) auto;
5170
}
5271
footer {
72+
5373
position: fixed;
54-
bottom: 0;
74+
bottom: 0px;
5575
text-align: center;
76+
margin-right: 20px;
77+
border-top: 2px solid;
78+
width: 1515px;
79+
margin-top: 200px;
5680
}
81+
82+
5783
/* ====== Articles Grid Layout ====
5884
Setting the rules for how articles are placed in the main element.
5985
Inspect this in Devtools and click the "grid" button in the Elements view
@@ -68,6 +94,7 @@ main {
6894
> *:first-child {
6995
grid-column: span 2;
7096
}
97+
margin-bottom: 80px;
7198
}
7299
/* ====== Article Layout ======
73100
Setting the rules for how elements are placed in the article.
@@ -76,7 +103,7 @@ Keeping things orderly and separate is the key to good, simple CSS.
76103
*/
77104
article {
78105
border: var(--line);
79-
padding-bottom: var(--space);
106+
padding-bottom: 20px;
80107
text-align: left;
81108
display: grid;
82109
grid-template-columns: var(--space) 1fr var(--space);
@@ -87,3 +114,7 @@ article {
87114
grid-column: span 3;
88115
}
89116
}
117+
118+
h2{
119+
margin-bottom: 0px;
120+
}

0 commit comments

Comments
 (0)