This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"workbench.colorCustomizations": { | |
"editorCursor.foreground": "#069A8E", | |
"terminalCursor.foreground": "#069A8E" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log('Outter Line'); | |
console.group('Group 1'); | |
console.log('Line 1'); | |
console.log('Line 2'); | |
console.log('Line 3'); | |
console.groupEnd(); | |
console.group('Group 2'); | |
console.log('Line 1'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log('Outter line'); | |
console.log('Group 1'); | |
console.log('Line 1'); | |
console.log('Line 2'); | |
console.log('Line 3'); | |
console.log('Group 2'); | |
console.log('Line 1'); | |
console.log('Line 2'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"commandline": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"guid": "{ae44d6a3-cf84-4725-8e60-0039021b35fb}", | |
"hidden": false, | |
"icon": "C:\\Program Files\\Git\\mingw64\\share\\git\\git-for-windows.ico", | |
"name": "Git Bash", | |
"startingDirectory": "%USERPROFILE%", | |
"tabTitle": "Git Bash" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"better-comments.tags": [ | |
// Other tags here... | |
{ | |
"tag": "<>", | |
"color": "#2596be", | |
"strikethrough": false, | |
"underline": true, | |
"backgroundColor": "transparent", | |
"bold": true, | |
"italic": false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"better-comments.tags": [ | |
{ | |
"tag": "!", | |
"color": "#FF2D00", | |
"strikethrough": false, | |
"underline": false, | |
"backgroundColor": "transparent", | |
"bold": false, | |
"italic": false | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>HTML 5 Boilerplate</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<FRAMESET ROWS="*,100"> | |
<FRAMESET COLS="40%,*"> | |
<FRAME NAME="Menu" SRC="nav.html" TITLE="Menu"> | |
<FRAME NAME="Content" SRC="main.html" TITLE="Content"> | |
</FRAMESET> | |
<FRAME NAME="Ad" SRC="ad.html" TITLE="Advertisement"> | |
<NOFRAMES> | |
<BODY> | |
<H1>Table of Contents</H1> | |
<UL> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<HEAD> | |
<TITLE>CSS Example</TITLE> | |
<STYLE TYPE="text/css"> | |
H1 { font-size: x-large; color: red } | |
H2 { font-size: large; color: blue } | |
</STYLE> | |
</HEAD> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# <BASEFONT></BASEFONT>#} | |
<head> | |
<basefont color="red" face="Verdana, Geneva, sans-serif" size="12"> | |
</head> | |
{# <CENTER></CENTER> #} | |
<CENTER> | |
<TABLE> | |
<TR ALIGN=center> | |
<TH SCOPE=col>Name</TH> |