Skip to content

Commit d2d8387

Browse files
Harini ArunkumarHarini Arunkumar
authored andcommitted
Update header title and description
1 parent 72fe02b commit d2d8387

2 files changed

Lines changed: 35 additions & 14 deletions

File tree

Wireframe/index.html

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,16 @@
88
</head>
99
<body>
1010
<header>
11-
<h1>Wireframe</h1>
11+
<h1>Understanding Git and Wireframes</h1>
1212
<p>
13-
This is the default, provided code and no changes have been made yet.
13+
This page explains the basics of Git, the purpose of a README file, and how wireframes help developers plan and structure a webpage before writing code. It gives a clear overview of how these tools are used together in real-world web development.
1414
</p>
1515
</header>
1616
<main>
17-
<article>
18-
<img src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
20-
<p>
21-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22-
voluptates. Quisquam, voluptates.
23-
</p>
24-
<a href="">Read more</a>
25-
</article>
17+
2618
</main>
2719
<footer>
28-
<p>
29-
This is the default, provided code and no changes have been made yet.
30-
</p>
20+
3121
</footer>
3222
</body>
3323
</html>

Wireframe/style.css

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ body {
3030
background: var(--paper);
3131
color: var(--ink);
3232
font: var(--font);
33+
padding: 80px;
3334
}
3435
a {
3536
padding: var(--space);
@@ -48,12 +49,34 @@ https://www.w3.org/WAI/tutorials/page-structure/regions/
4849
main {
4950
max-width: var(--container);
5051
margin: 0 auto calc(var(--space) * 4) auto;
52+
padding-bottom: 80px;
5153
}
5254
footer {
5355
position: fixed;
56+
left: 0;
57+
right: 0;
5458
bottom: 0;
59+
z-index: 10;
60+
padding: 4px 0;
61+
background: white;
5562
text-align: center;
5663
}
64+
footer nav{
65+
display: flex;
66+
justify-content: center;
67+
align-items: center;
68+
gap: var(--space);
69+
flex-direction: row;
70+
flex-wrap: wrap;
71+
}
72+
footer nav a{
73+
padding: 4px 8px;
74+
border: none;
75+
max-width: fit-content;
76+
text-decoration: none;
77+
color: #222;
78+
font-size: 0.9rem;
79+
}
5780
/* ====== Articles Grid Layout ====
5881
Setting the rules for how articles are placed in the main element.
5982
Inspect this in Devtools and click the "grid" button in the Elements view
@@ -87,3 +110,11 @@ article {
87110
grid-column: span 3;
88111
}
89112
}
113+
main>section{
114+
display:grid;
115+
grid-template-columns: 1fr 1fr;
116+
gap: 16px;
117+
}
118+
main>section article:first-child {
119+
grid-column: 1 / -1;
120+
}

0 commit comments

Comments
 (0)