Consider a system $A\mathbf x=\mathbf b$ where $A=[a_{ij}]_{n\times n}$ is a coefficient matrix, $\mathbf b$ is the constant vector $(b_1,b_2,\ldots,b_n)^T$ and $\mathbf x$ is the solution vector $(x_1,x_2,\ldots,x_n)^T$.
Recall that we start off with an initial guess $\mathbf x^{(0)}=(x_1^{(0)},x_2^{(0)},\ldots,x_n^{(0)})^T$ and generate every iterate recursively as follows: $$\displaystyle x_{i}^{( k+1)} =\frac{1}{a_{ii}}\left( b_{i} -\sum _{j\ \neq \ i} a_{ij} \ x_{j}^{( k)}\right)\\ \Leftrightarrow \mathbf{x}^{( k+1)}=D^{-1}\left(\mathbf{b} -( A-D)\mathbf{x}^{( k)}\right) $$ where $D=\text{diag}(a_{11},a_{22},\ldots,a_{nn})$ and $D^{-1}=\text{diag}\left(\frac{1}{a_{11}},\frac{1}{a_{22}},\ldots,\frac{1}{a_{nn}}\right)$.
Let $H=I-D^{-1}A$ and $\mathbf c=D^{-1}\mathbf b$, we get: $$\mathbf x^{(k+1)}=H\mathbf x^{(k+1)}+\mathbf c$$
I have understood everything up to this from the notes I have. Then it goes on to claim that: $$ \color{red}{\text{$A$ is strictly diagonally dominant}\iff ||H||<1}\implies \mathbf x^{(k)} \text{ converges}$$
The second implication is obvious to me because $\rho(H)<||H||$ and $\rho(H)<1$ is a necessary and sufficient condition for convergence.
I don't know how to prove the first one (which is in red). I would appreciate any hint or help.