-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport_minorc_errores.html
42 lines (36 loc) · 1.25 KB
/
report_minorc_errores.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
<!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>Type</th><th>Line</th><th>Col</th><th>descrip</th></tr>
<tr><td>sintactico</td><td>1</td><td>6</td><td>Error gramatical en: {</td></tr>
</table>
</body>
</html>