Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Solution to Algebra Chapter 0
![Lines of code](https://tokei.rs/b1/github/hooyuser/Solution-to-Algebra-Chapter-0)
![GitHub repo size](https://img.shields.io/github/repo-size/hooyuser/Solution-to-Algebra-Chapter-0?style=plastic)
![Lines of Code](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/hooyuser/github-badges/main/badges/hooyuser-Solution-to-Algebra-Chapter-0.json)
![GitHub repo size](https://img.shields.io/github/repo-size/hooyuser/Solution-to-Algebra-Chapter-0)

**Preview Here**: [Solution to Algebra, Chapter 0.pdf](https://hooyuser.github.io/Solution-to-Algebra-Chapter-0/Solution_to_Algebra_Chapter_0.pdf)

Expand All @@ -11,3 +11,9 @@ I find this approach to be particularly appealing. So I'm enthusiastic to share

As a beginner, I'm trying to make my proof explict and detailed, but unfortunately it seems verbose and tedious sometimes.
Anyway, I would appreciate it if you can point out my mistakes, big or small.

<div align="center">
<h3>Project Growth</h3>
<img src="https://raw.githubusercontent.com/hooyuser/github-badges/main/diagrams/hooyuser-Solution-to-Algebra-Chapter-0.svg" width="600px" />
<p><i>Tracking Lines of Code over time</i></p>
</div>
Comment on lines +15 to +19

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The HTML for the project growth section can be improved to better align with modern web standards:

  1. The align attribute on <div> elements is obsolete in HTML5. It's better to use CSS for styling, for example: style="text-align: center;".
  2. The width attribute for an <img> tag should be a unitless value representing pixels. Including 'px' is not standard HTML. It should be width="600".

Here is a suggested update incorporating these changes.

Suggested change
<div align="center">
<h3>Project Growth</h3>
<img src="https://raw.githubusercontent.com/hooyuser/github-badges/main/diagrams/hooyuser-Solution-to-Algebra-Chapter-0.svg" width="600px" />
<p><i>Tracking Lines of Code over time</i></p>
</div>
<div style="text-align: center;">
<h3>Project Growth</h3>
<img src="https://raw.githubusercontent.com/hooyuser/github-badges/main/diagrams/hooyuser-Solution-to-Algebra-Chapter-0.svg" width="600" />
<p><i>Tracking Lines of Code over time</i></p>
</div>