Skip to content

Commit aec4443

Browse files
articles section contains three distinct articles, each with its own unique image, title, summary, and link
1 parent 4abd832 commit aec4443

5 files changed

Lines changed: 19 additions & 17 deletions

File tree

8.94 KB
Loading

Wireframe/image/article_readme.png

69.8 KB
Loading
21.5 KB
Loading

Wireframe/index.html

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,35 +16,32 @@ <h1>Wireframe</h1>
1616
<main class="main">
1717
<section class="content">
1818
<article class="article">
19-
<img src="placeholder.svg" alt="" />
20-
<h2>Title</h2>
19+
<img src="image/article_readme.png" alt="a readme file" />
20+
<h2>The purpose of a README file</h2>
2121
<p>
22-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
23-
voluptates. Quisquam, voluptates.
22+
You can add a README file to your repository to tell other people why your project is useful, what they can do with your project, and how they can use it...
2423
</p>
25-
<a href="">Read more</a>
24+
<a href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes">Read more</a>
2625
</article>
2726
</section>
2827

2928
<section class="content">
3029
<article class="article">
31-
<img src="placeholder.svg" alt="" />
32-
<h2>Title</h2>
30+
<img src="image/article_wireframe.png" alt="a wireframe" />
31+
<h2>The purpose of a wireframe</h2>
3332
<p>
34-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
35-
voluptates. Quisquam, voluptates.
33+
A wireframe is a basic, two-dimensional visual representation of a web page, app interface, or product layout. You can think of it as a low-fidelity, functional sketch...
3634
</p>
37-
<a href="">Read more</a>
35+
<a href="https://www.productplan.com/glossary/wireframe/">Read more</a>
3836
</article>
3937

4038
<article class="article">
41-
<img src="placeholder.svg" alt="" />
42-
<h2>Title</h2>
39+
<img src="image/article_mermaid.png" alt="a git branch" />
40+
<h2>A branch in Git</h2>
4341
<p>
44-
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam,
45-
voluptates. Quisquam, voluptates.
42+
In Git, a branch is like a separate workspace where you can make changes and try new ideas without affecting the main project. Think of it as a "parallel universe" for your code...
4643
</p>
47-
<a href="">Read more</a>
44+
<a href="https://www.w3schools.com/git/git_branch.asp?remote=github">Read more</a>
4845
</article>
4946
</section>
5047
</main>

Wireframe/style.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,14 @@ p {
6565
flex: 1;
6666
}
6767

68+
.article img {
69+
width: 100%;
70+
}
71+
6872
.article h2 {
6973
margin-top: 0.5rem;
7074
margin-bottom: 0.5rem;
75+
font-size: 1rem;
7176
}
7277

7378
.article p {
@@ -77,7 +82,7 @@ p {
7782

7883
.article a {
7984
background-color: var(--grey-light);
80-
color: var(--black);
85+
color: var(--grey-dark);
8186
border-style: solid;
8287
border-width: 1px;
8388
border-color: var(--grey-dark);
@@ -88,7 +93,7 @@ p {
8893

8994
.article a:hover {
9095
background-color: var(--grey-dark);
91-
color: var(--white);
96+
color: var(--grey-light);
9297
border-color: var(--grey-light);
9398
}
9499

0 commit comments

Comments
 (0)