-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
126 lines (103 loc) · 2.1 KB
/
index.htm
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tableten | tabletennis info and more</title>
<meta name="description" content="The most informative teble tennis website">
<meta property="og:url" content="tabletennis.com"/>
<link rel="icon"
type="image/png"
href="favicon.png">
<style>
h1{ color: lightblue; }
p{ color: white; }
body{
background-color: gray;
text-align: center;
align-content: center;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
align-self: center;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<h1> Table Tennis</h1>
<img src="tt.jpg" width="1000" height="500" >
<table>
<tr>
<th>Current rank/Previous rank</th>
<th>Name</th>
<th>Country</th>
</tr>
<tr>
<td>1/2</td>
<td>FAN Zhendong</td>
<td>China</td>
</tr>
<tr>
<td>2/1</td>
<td>Xu Xin</td>
<td>China</td>
</tr>
<tr>
<td>3/4</td>
<td>LIN Gaoyuan</td>
<td>China</td>
</tr>
<tr>
<td>4/3</td>
<td>MA Long</td>
<td>China</td>
</tr>
<tr>
<td>5/5</td>
<td>HARIMOTO Tomokazu</td>
<td>Japan</td>
</tr>
<tr>
<td>6/6</td>
<td>CALDERANO Hugo</td>
<td>Brazil</td>
</tr>
<tr>
<td>7/8</td>
<td>LIANG Jingkun</td>
<td>China</td>
</tr>
<tr>
<td>8/7</td>
<td>BOLL Timo</td>
<td>Germany</td>
</tr>
<tr>
<td>9/9</td>
<td>FALCK Mattias</td>
<td>Sweden</td>
</tr>
<tr>
<td>8/7</td>
<td>LIN Yun-Ju</td>
<td>Taiwan</td>
</tr>
<p> Visit the <a href="https://www.ittf.com/">ITTF</a> website for more information on the latest table tennis tournaments, rankings, ratings, sports gear and more.</p>
</body>
<h2>Table Tennis Gear</h2>
<ul>
<li>Paddle</li>
<li>Table</li>
<li>Paddle wipes</li>
<li>Table Tennis shoes</li>
</ul>
</html>