Resources
Tutorial by Dave Gray
Free YouTube Tutorial.
"Keep striving for progress, not perfection. And a little progress every day goes a very long way." - Dave Gray
MDN
MDN provides detailed explaination on each classes and attributes.
Full Notes on Notion.
Free YouTube Tutorial.
"Keep striving for progress, not perfection. And a little progress every day goes a very long way." - Dave Gray
MDN provides detailed explaination on each classes and attributes.
<a href="https://leekaize.com"> leekaize.com </a>
<h1> Homepage | Lee Kai Ze </h1>
<p> Paragraph of words. </p>
VS Code has became the go-to choice for most programming languages in 2023.
The Live Server Extension allows quick preview of development website without manually setting up local server.
Use w3c tool for HTML validation by uploading the HTML files.
Here are some HTML Entities: < © >
Typed as: < © >
<figure>
<img src="/img/kuching.jpg" alt="A photo taken at Kuching Riverside." title="Kuching Riverside" width="500" loading="lazy">
<figcaption>Kuching Riverside.</figcaption>
</figure>
The `width` and `height` are recommended in `img` tag to give the browser an idea of the image size
although it will be done on CSS too.
The `loading="lazy"` make the page only load that image until scrolled to there.
Semantic - Provides Meaning rather than just visual. These are important for assistive technologies, try not to make everything just a generic <div> or <span> as they don't have any meanings by themselves, they are more useful in CSS.
<caption>, <thead>, <tbody> and <tfoot> gives semantic section to the table.
Data within table are defined under <tr> (rows), <th> (heading data), <td> (data).