Skip to content

hchiam/learning-html

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 

Repository files navigation

Learning HTML / HTML5:

Just one of the things I'm learning. https://github.com/hchiam/learning

https://app.memrise.com/course/700032/learn-html

HTML tags you might not know about

https://www.youtube.com/shorts/nIcxzmiVFJg

https://www.w3schools.com/tags/att_a_download.asp

<!-- the download attribute makes it download instead, and you an set the custom file name with download="custom.name" -->
<a href="some/path/to/some/filename.whatever" download>

https://www.w3schools.com/html/tryit.asp?filename=tryhtml_elem_datalist

<input list="browsers"> <!-- input will autocomplete suggestions from the datalist options (not forced) -->
<datalist id="browsers">
  <option value="Internet Explorer">
  <option value="Firefox">
  <option value="Chrome">
  <option value="Opera">
  <option value="Safari">
</datalist>

https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_areamap

https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_abbr_test

https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_template2

https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_template3

not-well-known HTML attributes

https://www.smashingmagazine.com/2022/03/html-attributes-you-never-use

Miscellaneous notes

About

Learning HTML/HTML5 stuff

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published