2015-02-04 16:15:14 +01:00
|
|
|
<!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>
|
2015-02-16 10:23:54 +01:00
|
|
|
<i role="img" class="icon-star" aria-label="Top rated article" title="Top rated article"></i>
|
2015-02-04 16:15:14 +01:00
|
|
|
</body>
|
2015-02-16 10:23:54 +01:00
|
|
|
</html>
|