-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path00-code_editor.html
More file actions
53 lines (51 loc) · 2.7 KB
/
00-code_editor.html
File metadata and controls
53 lines (51 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="HTML5 tutorials">
<meta name="keywords" content="html, html5, hyper text markup language, web pages structure,
html elements, html tags, html building blocks, html typography">
<meta name="author" content="Ayman Alexan Rezk">
<title>HTML | VSCode Editor Tips</title>
</head>
<body>
<h1>VSCode Editor EMMET Tips</h1>
<p>EMMET Abbr. & some VS Code ( How To ) </p>
<ul>
<li>EMMET : Tab Or Enter</li>
<li>For Basic Layout: ! +Enter or Tab</li>
<li>Double click a file to be opened & maintained</li>
<li>On the selected file: +add new file </li>
<li>Comment : (CTRL + ?/) </li>
<li>CTRL + Enter ( to begin a new line without breaking the line you're in )</li>
<li>lorem + Tab for dummy text</li>
<li>lorem10 + Tab: for 10 dummy words</li>
<li>SHIFT + ALT + Down => to copy the line you're in in a new line</li>
<li>CTRL + left/right arrow to move by word ( not by a singl space )</li>
<li>Press Home key to move to the begining of the line</li>
<li>Press End key to move to the end of the line</li>
<li>Alt + up or down arrow to move the line you're in</li>
<li>li*4 + Tab to have four list items</li>
<li>input:email +Tab</li>
<li>select a word , then: ctrl + d to select the other one and so on</li>
<li>Select multi-lines then hit Tab to indent them more to the right,<br>
Or: Shift + Tab to indent them back
<li>div#about +Tab || #about +Tab == a div of id="about"</li>
<li>h1#about +Tab == h1 element with id="about" </li>
</ul>
<h2>VSCode Extensions</h2>
<ol>
<li><strong>Live Server =></strong> generate a loopback address:
<p>An address that sends outgoing signals back to the same computer for testing.<br>
In a TCP/IP network, the loopback IP address is 127.0.0.1,<br>
and pinging this address will always return a reply<br>
unless the firewall prevents it.</p>
<p>The loopback address allows a network administrator to treat the local machine<br>
as if it were a remote machine.</p>
</li>
<li>Prettier - Code formatter</li>
</ol>
</body>
</html>