-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (76 loc) · 2.19 KB
/
Copy pathindex.html
File metadata and controls
78 lines (76 loc) · 2.19 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
<title>CheatSheet Linux shortcuts</title>
<link href='https://fonts.googleapis.com/css?family=Special+Elite' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Ubuntu+Mono' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Ubuntu+Condensed' rel='stylesheet' type='text/css'>
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<link rel="icon" type="image/ico" href="favicon.ico" />
</head>
<body>
<!--title-->
<h2>Linux Shortcuts</h2>
<img src="tux.png">
<!--table of commands-->
<div id="container">
<table>
<caption>Se déplacer sur le bureau</caption>
<tr>
<td class="command">Alt+F4</td>
<td class="description">Fermer la fenêtre actuelle</td>
</tr>
<tr>
<td class="command">Alt+Tab</td>
<td class="description">Changer de fenêtre rapidement</td>
</tr>
<tr>
<td class="command">Ctrl+Alt+Flèches</td>
<td class="description">Basculer entre les bureaux</td>
</tr>
<tr>
<td class="command">Ctrl+Alt+L</td>
<td class="description">Verrouiller l'écran</td>
</tr>
</table>
<table>
<caption>Raccourcis d'édition</caption>
<tr>
<td class="command">Ctrl+a</td>
<td class="description">Sélectionner tout le texte</td>
</tr>
<tr>
<td class="command">Ctrl+x</td>
<td class="description">Couper</td>
</tr>
<tr>
<td class="command">Ctrl+c</td>
<td class="description">Copier</td>
</tr>
<tr>
<td class="command">Ctrl+v</td>
<td class="description">Coller</td>
</tr>
<tr>
<td class="command">Ctrl+z</td>
<td class="description">Annuler la dernière action</td>
</tr>
</table>
<table>
<caption>Capture d'écran</caption>
<tr>
<td class="command">Impr.Ecran</td>
<td class="description">Fait une capture d'écran</td>
</tr>
<tr>
<td class="command">Alt+Impr.Ecran</td>
<td class="description">Fait une capture de la fenêtre</td>
</tr>
</table>
</div>
<!--add a footer here-->
<footer>
<p>©Totor59</p>
</footer>
</body>