Link: https://lafoucc.github.io/IMA-CCLab/my-first-website/
Description: I added my mini project Eyes In the Dark to the website page.
Reflections:
- How can orderly file name convention (html files, CSS files, images, etc.) prevent errors when building a website?
With a file name convention, I think people won’t mix different files up. Different types of files are aimed at different purposes, so a nice name convention can help people to distinguish things.
- When would you want to use classes, when IDs?
class are for HTML files and can be used for identifying different paragraphs, different div… IDs are not so commonly used in HTLM but in other files like JavaScript.
- Which limitations did you run into in the styling of your page?
I can only style concerning the text styles, the margins and padding (the position of the texts), and the color. I can’t add any advanced stuff like a switch that can change which page I will be on.
- How does editing and styling a text in (WYSIWYG) text editor, such as Microsoft Word, compare to writing HTML? What are the advantages of each over the other?
Microsoft Word has more options and is easy to change the style I choose, while HTML without Google fonts is very limited.
- Explain how different web technologies come together on your webpage. How is writing HTML or CSS different from writing p5.js (JavaScript)?
HTML is more about the structure of the website while CSS is for the styling of the web page, whereas Javascript can add more interactivity to the web page.