Skip to content

Commit 5274f8c

Browse files
committed
added image for readme article and edited html by changing title and content. changed sizing of images
1 parent 9e75111 commit 5274f8c

4 files changed

Lines changed: 10 additions & 12 deletions

File tree

Wireframe/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ There are some provided HTML and CSS files you can use to get started. You can u
2727

2828
## Acceptance Criteria
2929

30-
- [ ] Semantic HTML tags are used to structure the webpage.
30+
- [x] Semantic HTML tags are used to structure the webpage.
3131
- [ ] The page scores 100 for Accessibility in the Lighthouse audit.
32-
- [ ] The webpage is styled using a linked .css file.
33-
- [ ] The webpage is properly committed and pushed to a branch on GitHub.
32+
- [x] The webpage is styled using a linked .css file.
33+
- [x] The webpage is properly committed and pushed to a branch on GitHub.
3434
- [ ] The articles section contains three distinct articles, each with its own unique image, title, summary, and link.
35-
- [ ] The page footer is fixed to the bottom of the viewport.
35+
- [x] The page footer is fixed to the bottom of the viewport.
3636
- [ ] The page layout closely match the wireframe.
3737

3838
### Developers must adhere to professional standards.
359 KB
Loading

Wireframe/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
<header>
1111
<h1>Wireframe</h1>
1212
<p>
13-
This is the default, provided code and no changes have been made yet.
13+
What is a readme file for or what is the purpose of a wireframe and what is a git branch?<br>
14+
Read below to find out!
1415
</p>
1516
</header>
1617
<main>
1718
<article>
18-
<img class="section__article--img" src="placeholder.svg" alt="" />
19-
<h2>Title</h2>
19+
<img src="Screenshot 2026-05-19 at 11.31.04 am.png" alt="" />
20+
<h2>Readme file</h2>
2021
<p>
21-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
22-
voluptates. Quisquam, voluptates.
22+
A readme file informs anyone looking at your repository what your project is about. It lets them know how to install it (if its an application) and how to use it.
2323
</p>
2424
<a href="">Read more</a>
2525
</article>

Wireframe/style.css

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ a {
3939
img,
4040
svg {
4141
width: 100%;
42-
object-fit: cover;
4342
}
4443
/* ====== Site Layout ======
4544
Setting the overall rules for page regions
@@ -71,8 +70,6 @@ https://gridbyexample.com/learn/
7170
main {
7271
display: grid;
7372
grid-template-columns: 1fr 1fr;
74-
margin-left: 10%;
75-
margin-right: 10%;
7673
gap: var(--space);
7774
> *:first-child {
7875
grid-column: span 2;
@@ -102,5 +99,6 @@ article {
10299
}
103100
> img {
104101
grid-column: span 3;
102+
aspect-ratio: 16/9;
105103
}
106104
}

0 commit comments

Comments
 (0)