Skip to content

Commit ede0704

Browse files
committed
added styles for header,
added styles for footer.
1 parent c2fd516 commit ede0704

2 files changed

Lines changed: 43 additions & 8 deletions

File tree

Wireframe/index.html

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,33 @@ <h1>Wireframe</h1>
1616
</div>
1717
</header>
1818
<main>
19-
<article>
20-
<img src="placeholder.svg" alt="" />
21-
<h2>Title</h2>
22-
<p>
23-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
24-
voluptates. Quisquam, voluptates.
19+
<article id="1st">
20+
<img src="wiki-readme-crop.png" alt="A black screen showing text from a readme file that has been opened">
21+
<h2>Purpose of a Readme file</h2>
22+
<p>A Readme file is a file containing text that is often used to relay information to the user.
2523
</p>
26-
<a href="">Read more</a>
24+
<a href="https://en.wikipedia.org/wiki/README">Read more</a>
25+
</article>
26+
<article id="2nd">
27+
<img src="https://cdn.prod.website-files.com/64fa82cbdeed167ebaefef84/64fa868c41d7a2600b45a4d5_606de8872932076fce79ad0f_TL5vrIkw1V7VYfqA3lvvi313PuvWyzIJtAQ4HthZnsXuYXQTC4rQhEcyq40qZaYDYpBHtnnPJ0PhnmBuJ9XRLnWMrlzZE9IXIfyvYan4Xj3woYXuTrAC7kTgydlqIADE8A26ITwb.png" alt="shetched images showing a plan for desnining a website, showing areas for an image, video player and other boxes for feature text and information." >
28+
<!-- Image from https://www.flux-academy.com/blog/20-wireframe-examples-for-web-design to help show wireframe-->
29+
<h2>Purpose of a Wireframe</h2>
30+
<p>A wireframe is normally an image that is used to show instructions on how a website is meant to be displayed.
31+
</p>
32+
<a href="https://en.wikipedia.org/wiki/Website_wireframe">Read more</a>
33+
</article>
34+
<article id="3rd">
35+
<img src="https://docs.wavemaker.com/learn/assets/images/branching-model-121bd320dd2f5972a5f6ce2fb19a3f4e.png" alt="Connection blue balls in a straight line starting from one called Master then connection to others with lined arrow, from First is extra arrow goign up to red balls labed Bugfix then back down to third blue ball, from 2nd blue ball extra arrow goes down to two green balls labed Feature then back to last blue ball." >
36+
<!-- Image from https://docs.wavemaker.com/learn/blog/2021/09/17/git-branching-strategy/ to aid in display of Git Branch-->
37+
<h2>A branch of Git</h2>
38+
<p>A Branch in git is a copy of the main folder where there has been edits or fixes done to in a controlled manner that can then be implemented to the main folder in due time.
39+
</p>
40+
<a href="https://en.wikipedia.org/wiki/Branching_(version_control)">Read more</a>
2741
</article>
2842
</main>
2943
<footer>
3044
<p>
31-
This is the default, provided code and no changes have been made yet.
45+
By Hugh Mills - Intro to Programing - May 2026
3246
</p>
3347
</footer>
3448
</body>

Wireframe/style.css

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,31 @@ main {
4949
max-width: var(--container);
5050
margin: 0 auto calc(var(--space) * 4) auto;
5151
}
52+
header {
53+
text-align:center;
54+
max-width: fit-content;
55+
margin-left: auto;
56+
margin-right: auto;
57+
}
58+
h1 {
59+
text-align:center;
60+
font-size: 4em;
61+
max-width: fit-content;
62+
font-weight: bold;
63+
font-family: 'Times New Roman', Times, serif;
64+
}
65+
#top-comment {
66+
text-align:center;
67+
margin-bottom: 20px;
68+
}
5269
footer {
5370
position: fixed;
5471
bottom: 0;
5572
text-align: center;
73+
color: white;
74+
padding-top: 10px;
75+
background-color: rgb(28, 77, 127);
76+
width:100%
5677
}
5778
/* ====== Articles Grid Layout ====
5879
Setting the rules for how articles are placed in the main element.

0 commit comments

Comments
 (0)