-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (81 loc) · 971 Bytes
/
index.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
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
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="font/font.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<article>
<h2>Letter - lowercase</h2>
<i>a</i>
<i>b</i>
<i>c</i>
<i>d</i>
<i>e</i>
<i>f</i>
<i>g</i>
<i>h</i>
<i>i</i>
<i>j</i>
<i>k</i>
<i>l</i>
<i>m</i>
<i>n</i>
<i>o</i>
<i>p</i>
<i>q</i>
<i>r</i>
<i>s</i>
<i>t</i>
<i>u</i>
<i>v</i>
<i>w</i>
<i>x</i>
<i>y</i>
<i>z</i>
</article>
<article>
<h2>Letter - uppercase</h2>
<i>A</i>
<i>B</i>
<i>C</i>
<i>D</i>
<i>E</i>
<i>F</i>
<i>G</i>
<i>H</i>
<i>I</i>
<i>J</i>
<i>K</i>
<i>L</i>
<i>M</i>
<i>N</i>
<i>O</i>
<i>P</i>
<i>Q</i>
<i>R</i>
<i>S</i>
<i>T</i>
<i>U</i>
<i>V</i>
<i>W</i>
<i>X</i>
<i>Y</i>
<i>Z</i>
</article>
<article>
<h2>Number</h2>
<i>0</i>
<i>1</i>
<i>2</i>
<i>3</i>
<i>4</i>
<i>5</i>
<i>6</i>
<i>7</i>
<i>8</i>
<i>9</i>
</article>
</body>
</html>