Skip to content

Commit 52df496

Browse files
committed
fix some index, typo errors and delete blank spaces
1 parent b167650 commit 52df496

2 files changed

Lines changed: 13 additions & 17 deletions

File tree

Wireframe/index.html

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,49 +13,44 @@ <h1>Wireframe</h1>
1313
Wireframe is low-fidelity, Visual Blueprint of a webpage or app interface.
1414
</p>
1515
</header>
16-
17-
<main>
16+
<main>
1817
<!-- what is the purpose of README article -->
1918
<article>
2019
<img src="https://www.makeareadme.com/images/open-graph-logo.png?v=20181203" alt="README image" />
2120
<h2>README file</h2>
22-
23-
<details> <summary>The purpose of README file is to give information about the project and how to use it
21+
<details>
22+
<summary>
23+
The purpose of README file is to give information about the project and how to use it
2424
</summary>
2525
<p> A README file is the "front door" of your project. it is typically a text file (usuallyREADME.md using Markdown) located in the root directory of your code</p>
2626
</details>
2727
<a href="https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes">Read more</a>
2828
</article>
29-
3029
<!--purpose of wireframe article-->
3130
<article>
3231
<img src="https://github.com/Dagim-Daniel/Module-Onboarding/blob/main/Wireframe/wireframe.png?raw=true" alt="">
3332
<h2>Purpose of Wireframe</h2>
3433
<details>
3534
<summary>
3635
It establish the basic Structure of a page.
37-
</summary>
38-
<p>Wireframing is the perfect way for the designers to gauge how the user would interact with the interface. Before adding visual considerations like color or images, they serve as an outline to get the team on the same page early.</p>
36+
</summary>
37+
<p>wireframe is the perfect way for the designers to gauge how the user would interact with the interface. Before adding visual considerations like color or images, they serve as an outline to get the team on the same page early.</p>
3938
</details>
4039
<a href="https://medium.com/design-bootcamp/wireframes-5d63f9d760a8">Read more</a>
4140
</article>
42-
4341
<!-- what is branch git article -->
4442
<article>
4543
<img src="https://cdn.iconscout.com/icon/free/png-256/free-git-branch-logo-icon-svg-download-png-1982843.png" alt="">
4644
<h2>Branch in Git</h2>
4745
<details>
4846
<summary>
4947
In Git, branch a pointer to a snapshot of your changes.
50-
</summary>
51-
52-
<p>Branch is like a separate working copy of your project in Git. It allows you to make changes without affecting the main branch (often called "main" or "master").</p>
48+
</summary>
49+
<p>Branch is like a separate working copy of your project in Git. It allows you to make changes without affecting the main branch (often called "main" or "master").</p>
5350
</details>
5451
<a href="https://www.w3schools.com/git/git_branch.asp">Read more</a>
5552
</article>
56-
5753
</main>
58-
5954
<footer>
6055
<p>Author: Dagim Daniel : <a href= "mailto:dagimdan19@gmail.com">dagimdan19@gmail.com</a></p>
6156
</footer>

Wireframe/style.css

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
/* Here are some starter styles
22
You can edit these or replace them entirely
3-
It's showing you a common way to organise CSS
3+
It's showing you a common way to organize CSS
44
And includes solutions to common problems
55
As well as useful links to learn more */
66

77
/* ====== Design Palette ======
88
This is our "design palette".
9-
It sets out the colours, fonts, styles etc to be used in this design
9+
It sets out the colors, fonts, styles etc to be used in this design
1010
At work, a designer will give these to you based on the corporate brand, but while you are learning
1111
You can design it yourself if you like
1212
Inspect the starter design with Devtools
13-
Click on the colour swatches to see what is happening
13+
Click on the color swatches to see what is happening
1414
I've put some useful CSS you won't have learned yet
1515
For you to explore and play with if you are interested
1616
https://web.dev/articles/min-max-clamp
@@ -47,7 +47,8 @@ footer a
4747
img,
4848
svg {
4949
width: 100%;
50-
object-fit: cover;
50+
aspect-ratio: 16/9; /* keeps the image from getting too tall or too wide */
51+
object-fit: fit;
5152
}
5253
/* ====== Site Layout ======
5354
Setting the overall rules for page regions

0 commit comments

Comments
 (0)