diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2020-10-24 15:36:46 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2020-10-24 15:36:46 +0300 |
| commit | 2d9481dd9772008f0b402b6d1379b1165b7c7e28 (patch) | |
| tree | 3fce5495b97b0bac76ea8a2f5f1e8ccf253659b4 /Only HTML (html learning)/How I learned basic | |
| parent | bd760b5c51351e787297ceb54422beb8ce00a1ec (diff) | |
| download | Self-learning-2d9481dd9772008f0b402b6d1379b1165b7c7e28.tar Self-learning-2d9481dd9772008f0b402b6d1379b1165b7c7e28.tar.gz Self-learning-2d9481dd9772008f0b402b6d1379b1165b7c7e28.zip | |
Modified php, javascript and html file tree
Diffstat (limited to 'Only HTML (html learning)/How I learned basic')
| -rw-r--r-- | Only HTML (html learning)/How I learned basic/LearnHTML.webp | bin | 0 -> 52894 bytes | |||
| -rw-r--r-- | Only HTML (html learning)/How I learned basic/LearnMoreHTML.webp | bin | 0 -> 113630 bytes | |||
| -rw-r--r-- | Only HTML (html learning)/How I learned basic/New Text Document.html | 51 |
3 files changed, 51 insertions, 0 deletions
diff --git a/Only HTML (html learning)/How I learned basic/LearnHTML.webp b/Only HTML (html learning)/How I learned basic/LearnHTML.webp Binary files differnew file mode 100644 index 0000000..b2db05e --- /dev/null +++ b/Only HTML (html learning)/How I learned basic/LearnHTML.webp diff --git a/Only HTML (html learning)/How I learned basic/LearnMoreHTML.webp b/Only HTML (html learning)/How I learned basic/LearnMoreHTML.webp Binary files differnew file mode 100644 index 0000000..a8d455b --- /dev/null +++ b/Only HTML (html learning)/How I learned basic/LearnMoreHTML.webp diff --git a/Only HTML (html learning)/How I learned basic/New Text Document.html b/Only HTML (html learning)/How I learned basic/New Text Document.html new file mode 100644 index 0000000..aaf40e1 --- /dev/null +++ b/Only HTML (html learning)/How I learned basic/New Text Document.html @@ -0,0 +1,51 @@ +<!DOCTYPE html> +<html> + <head> + <Title>Basic HTML</Title> + </head> + + <body> + <h1>How I learned basic HTML in 30 min</h1> + <hr /> + + <p>HTML is a very different language than C# or Java, but it is still very very useful. + Thanks to YouTube I learned not only how to code this page, but + </p> + + <ul> + <li>also</li> + <li>to</li> + <li>make</li> + <li>bullet points</li> + </ul> + + <p>and to also</p> + + <ol> + <li>make</li> + <li>ordered</li> + <li>lists</li> + </ol> + <hr /> + + <p>Well there are other things I learned too, but you should take a look at the videos (click on images)</p> + + <a href="https://www.youtube.com/watch?v=bWPMSSsVdPk"> + <img src="LearnHTML.webp" alt="Learn HTML in 12 minutes"/> + </a> + + <a href="https://www.youtube.com/watch?v=KJ13lX20FqU" > + <img src="LearnMoreHTML.webp" alt="Learn more HTML in 12 minutes"> + </a> + + <p>*This is a test/exercise of my abilities</p> + + <hr /> + + <h2>Entry number 17</h2> + <h3>Dark Darker Yet Darker</h3> + <h4>The Darkness Keeps Growing</h4> + <h5>The Shadows Cutting Deeper</h5> + <h6>Photon Readings Negative</h6> + </body> +</html>
\ No newline at end of file |
