Posts

API

 Representational state transfer (REST) is a software architectural style API API are also known as subroutines, methods, requests, or endpoints.  One purpose of APIs is to hide the internal details of how a system works The term API is often used to refer to web APIs,[2] which allow communication between computers that are joined by the internet.  The API describes and prescribes the "expected behavior" (a specification) while the library is an "actual implementation" of this set of rules RESTful web APIs are typically loosely based on HTTP methods to access resources via URL-encoded parameters and the use of JSON or XML to transmit data.

Web Technologies

HTML is the standard markup language for Web pages. All HTML documents must start with a document type declaration: <!DOCTYPE html>. The HTML document itself begins with <html> and ends with </html>. The visible part of the HTML document is between <body> and </body>. The <!DOCTYPE> declaration represents the document type, and helps browsers to display web pages correctly. It must only appear once, at the top of the page (before any HTML tags). HTML headings are defined with the <h1> to <h6> tags. <h1> defines the most important heading. <h6> defines the least important heading HTML paragraphs are defined with the <p> tag: HTML links are defined with the <a> tag: <a href="https://www.wschools.com">This is a link</a> HTML images are defined with the <img> tag. <img src="w3schools.jpg" alt="wSchools.com" width="104" height="142"> View HTML Sou...

Java

Image
  Java