Activity # 33 Angular recipe grid
app.component.html <style> body { background-color: #f2f2f2; } h1 { background-color: #333; color: #fff; padding: 10px; text-align: center; margin-top: 10px; } .input-contai...
Search for a command to run...
app.component.html <style> body { background-color: #f2f2f2; } h1 { background-color: #333; color: #fff; padding: 10px; text-align: center; margin-top: 10px; } .input-contai...
app.component.html <style> body { background-color: #f2f2f2; } h1 { background-color: #333; color: #fff; padding: 10px; text-align: center; margin-top: 10px; } .input-contai...
app.component.html <style> body { background-color: #f2f2f2; } h1 { background-color: #333; color: #fff; padding: 10px; text-align: center; margin-top: 10px; } .input-container { margin-bot...
Research and understand the various HTTP status codes used in RESTful APIs to indicate the result of an API request. Focus on these main categories: 1xx (Informational): These codes indicate that the request was received and is being processed, but ...
HTTP request methods HTTP defines a set of request methods to indicate the purpose of the request and what is expected if the request is successful. Although they can also be nouns, these request methods are sometimes referred to as HTTP verbs. Each ...
What is REST API REST is an acronym for REpresentational State Transfer and an architectural style for distributed hypermedia systems. Roy Fielding first presented it in 2000 in his famous dissertation. Since then it has become one of the most widely...
GitHub Repository: https://github.com/Koronuma4Dev/CSSgrid
Using flex together with media queries to create a different layout for different screen sizes/devices: The 5 button goes to different pages and have a their own content. CSS property that I used: Flex Container: The parent element with display: ...
What is SOLID principle in Angular SOLID is a set of design principles that can be used to develop maintainable and scalable software applications. It stands for Single Responsibility Principle (SRP), Open-Closed Principle (OCP), Liskov Substitution ...