-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsym.html
46 lines (40 loc) · 903 Bytes
/
sym.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tabla de simbolos</title>
<style>
table {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
max-width: 500px;
margin: 0 auto;
}
table td, table th {
border: 1px solid #ddd;
padding: 8px;
}
table tr:nth-child(even){background-color: #f2f2f2;}
table tr:hover {background-color: #ddd;}
table th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #4CAF50;
color: white;
}
</style>
</head>
<body>
<table>
<tr><th>Key</th><th>Value</th></tr>
<tr><td>$t1</td><td>1</td></tr>
<tr><td>$t2</td><td>2</td></tr>
<tr><td>$t3</td><td>+</td></tr>
<tr><td>$t6</td><td>N</td></tr>
<tr><td>$t7</td><td>78</td></tr>
</table>
</body>
</html>