-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbonus_table.html
More file actions
80 lines (80 loc) · 1.83 KB
/
bonus_table.html
File metadata and controls
80 lines (80 loc) · 1.83 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
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>Таблица</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=block" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="styles.css?v=5">
</head>
<body class="white_bg">
<div class="popup_container" style="margin: 35px 16px 44px;">
<div class="title2">Таблица зависимости процентов от уровней</div>
<table style="width: 100%; margin-top: 16px;">
<colgroup>
<col span="1" style="width: 20px;">
<col span="1" >
<col span="1" >
</colgroup>
<thead>
<tr>
<td> </td>
<td>Уровень</td>
<td>Процент</td>
</tr>
</thead>
<tr>
<td></td>
<td>1</td>
<td>0%</td>
</tr>
<tr>
<td></td>
<td>2</td>
<td>2%</td>
</tr>
<tr>
<td></td>
<td>3</td>
<td>3%</td>
</tr>
<tr>
<td></td>
<td>4</td>
<td>4%</td>
</tr>
<tr>
<td></td>
<td>5</td>
<td>5%</td>
</tr>
<tr>
<td></td>
<td>6</td>
<td>6%</td>
</tr>
<tr>
<td></td>
<td>7</td>
<td>7%</td>
</tr>
<tr>
<td></td>
<td>8</td>
<td>8%</td>
</tr>
<tr>
<td></td>
<td>9</td>
<td>9%</td>
</tr>
<tr>
<td></td>
<td>10</td>
<td>10%</td>
</tr>
</table>
</div>
</body>
</html>