- Git log
Shows commit logs. git log is intended for creating release announcements. It groups each commit by author and displays the first line of each commit message. This is an easy way to see who’s been working on what. git log Show insertions and deletions to each file The –stat option displays the…
- CSS Applying CSS
There are three methods of applying CSS to a document. Inline Inline styles are CSS declarations that affect a single HTML element, contained within a style attribute. Avoid using CSS in this way, when possible. It is the opposite of a best practice. First, it is the least efficient implementation…
- Javascript Storage
Cookies An http cookie AKA web cookie, AKA browser cookie is a small piece of data stored in a text file that a server sends to the user’s web browser. The browser may store it and send it back with later requests to the same server. Typically, it’s used to tell if two requests came […]
- HTML Head Section
The <head> element contains metadata or information about the HTML page. It is a container for the following elements: <title>, <style>, <meta>, <link>, <script>, <noscript>, and <base>. Title tag The <title> tag defines the title of the document. The title must be text-only, and it is shown in the…
- HTML DOM
When a web page is loaded, the browser creates a Document Object Model of the page. The HTML DOM is a standard object model and programming interface for HTML. It defines: The HTML elements as objects The properties of all HTML elements The methods to access all HTML elements The events for all…