-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtips.php
38 lines (33 loc) · 926 Bytes
/
tips.php
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
<?php include 'components/head.php'; ?>
<?php include 'redirect.php'; ?>
<?php include 'components/navbar.php'; ?>
<body style="height: 100vh" class="grey darken-4">
<main>
<h2 class="brand-logo center white-text" style="font-size: 40px; font-weight: bolder;">Dicas</h2>
<br>
<div class="container white-text">
<div class="container">
<table class="centered">
<thead>
<tr>
<th>Shortcut</th>
<th>Resultado</th>
</tr>
</thead>
<tbody>
<tr>
<td>Ctrl + Enter</td>
<td>Executar query</td>
</tr>
<tr>
<td>Shift + Mouse scroll</td>
<td>Rolar página na horizontal</td>
</tr>
</tbody>
</table>
</div>
</div>
</main>
</body>
</html>
<?php include 'components/js.php'; ?>