IXD101 ( 30249 ) - Interaction Design Fundamentals. 2022-23

This week we reviewed our Project 2 work, while starting the GitHub learning process.


Feedback

After a review based on our ideas so far, the comments on how my design was progressing made me reconsider the outcome of my final screen.

The feedback I received was mainly focused around how the chosen typeface and colour schemes dated the overall appearance. I couldn’t agree more. I was unhappy with how my design was progressing, and appreciated the feedback received, as it confirmed my own thoughts.

So, with a new sense of motivation, I completely restarted the design and chose a sans-serif typeface, fitting with the Bauhaus and its clean, minimalist, geometrical forms of which my research followed.

<aside> <img src="/icons/push-pin_pink.svg" alt="/icons/push-pin_pink.svg" width="40px" /> Project 02

</aside>


GitHub

HTML Code

HTML, or Hypertext Markup Language, is the standard language used for creating web pages and web applications. It provides structure and formats content on the web, including text, images, and other media.

Elements

HTML elements are the building blocks of an HTML page. They are represented by tags, which are enclosed in angle brackets. For example, the heading element is represented by the <h1> tag, and the paragraph element is represented by the <p> tag.

Attributes

Elements can have attributes, which provide additional information about the element. Attributes are added to the opening tag of an element and are usually made up of a name and a value. For example, the href attribute of the <a> (anchor) element specifies the link's destination.

Tags

HTML tags are used to mark up the start and end of an HTML element. The start tag contains the element's name, and the end tag contains a forward slash followed by the element's name. For example, the <p> element is used to mark the start of a paragraph, and the </p> element is used to mark the end of the paragraph.