blob: 32f122127252e297dab2e34bb3a64d18b75f1e06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Accessibility: Icon Fonts</title>
<meta name="description" content="Accessible icon fonts">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
.icon-star:before {
content: "★";
}
</style>
</head>
<body>
<i role="img" class="icon-star" aria-label="Top rated article" title="Top rated article"></i>
</body>
</html>
|