Activity 31: Angular Ecommerce Product ListCreating a Model for Products We need to create a model for our products. This will define the structure of the product objects, which will be used throughout the application. products.list.ts export interface Product { name: string; descript...Nov 26, 2024·4 min read
Activity 30: HTTP Status Codes1xx: Informational These codes indicate that the request has been received, and the server is processing it, but there is no final response yet. These codes are rarely used in REST APIs. 100 Continue: The client can continue with the request. This i...Oct 26, 2024·4 min read
Activity 29: HTTP MethodsIn RESTful APIs, HTTP methods (also known as HTTP verbs) are used to specify the action that the client wants to perform on a given resource. The most commonly used HTTP methods include GET, POST, PUT, DELETE, and PATCH. Below is a detailed explanati...Oct 26, 2024·3 min read
Activity 28: Research Rest APIGather detailed information about REST API (Representational State Transfer Application Programming Interface). REST (Representational State Transfer) is an architectural style for designing networked applications. It allows clients to interact with ...Oct 26, 2024·4 min read
Activity 27: CSS GRIDapply it on 5 pages (ex. list of products,list of employees, list of students, etc) Repository: https://github.com/ChristineMaitom/Activity-27-CSS-GRIDOct 26, 2024·1 min read
Activity 26: CSS FLEXApply CSS Flexbox on 5 pages (e.g., product layout, employee cards, student profiles, etc.) To apply CSS Flexbox across five different pages with different layouts, I will provide a basic HTML structure and corresponding CSS Flexbox styles for each ...Oct 26, 2024·1 min read