$ git remote add REMOTE_NAME REMOTE_URLVerify that the new remote has been added by running git remote -v and seeing your REMOTE_NAME in the list.
| # GET VERSION | |
| npm -v (or --version) | |
| # GET HELP | |
| npm help | |
| npm | |
| # CREATE PACKAGE.JSON | |
| npm init | |
| npm init -y (or --yes) |
| <!-- | |
| One-element way of doing this kind of headings: | |
| ---------------- Text here ---------------- | |
| * One HTML tag only | |
| * Background-independant | |
| * Properly centered horizontally and vertically | |
| * Same browsers support as for flexbox |
| class Guitar { | |
| constructor(args) { | |
| this.name = args.name; | |
| this.stringsCount = args.stringsCount || 6; | |
| } | |
| play() { | |
| console.log("lalala"); | |
| } | |
| } |
| ```css | |
| .videoWrapper { | |
| position: relative; | |
| padding-bottom: 56.25%; /* 16:9 */ | |
| padding-top: 25px; | |
| height: 0; | |
| } | |
| .videoWrapper iframe { | |
| position: absolute; | |
| top: 0; |
| .tooltip { | |
| position: absolute; | |
| top: 100%; | |
| left: 0; | |
| width: 100%; | |
| max-width: 350px; | |
| padding: 0.5rem 1rem; | |
| background-color: #fff; | |
| border: 1px solid #000; | |
| border-radius: 4px; |