Skip to content

Commit

Permalink
Merge pull request #193 from software-tools-in-javascript/174-shorten…
Browse files Browse the repository at this point in the history
…-image-url

Shorten URL for image example.
  • Loading branch information
gvwilson authored Nov 11, 2019
2 parents 3237087 + 7805b22 commit a0ac316
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions htmlcss.tex
Original file line number Diff line number Diff line change
Expand Up @@ -357,11 +357,11 @@ \section{Images}\label{s:htmlcss-images}
(Again, we have wrapped and broken lines so that they will display nicely in the printed version.)
\begin{minted}{html}
<img src="./html5.png" title="HTML5 Logo"
alt="Displays the HTML5 logo using a local path" />
<img src="https://github.com/software-tools-in-javascript/js-vs-rc/blob/master/src/htmlcss/html5.png"
title="HTML5 Logo"
alt="Display the HTML5 logo using a URL" />
<img src="./assets/logo.png" title="Book Logo"
alt="Displays the book logo using a local path" />
<img src="https://js4ds.org/assets/logo.png"
title="Book Logo"
alt="Display the book logo using a URL" />
\end{minted}
Two things to note here are:
Expand Down

0 comments on commit a0ac316

Please sign in to comment.