html
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
<!DOCTYPE html>
<!-- Copyright (C) 2017 by Creatico @ sololearn.com-->
<!-- Edited by JFS Group™ @ sololearn.com & JFS Animion® -->
<html>
<head>
<title>HTML's Special Characters Library</title>
</head>
<body>
<header>
<h1>HTML's Special Characters Library</h1>
</header>
<table class="table">
<tr>
<th>Output</th>
<th>Code</th>
</tr>
<tr>
<td> ‘ <!-- ‘ --> </td>
<td> &lsquo; </td>
</tr>
<tr>
<td> ’ <!-- ’ --> </td>
<td> &rsquo; </td>
</tr>
<tr>
<td> ‚ <!-- ‚ --> </td>
<td> &sbquo; </td>
</tr>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
body {
background-color: #333;
color: white;
font-family: Helvetica;
}
.table {
width: 100%;
}
.table tr td {
color: #eee;
text-align: center;
border: 1px solid grey;
padding: 4px;
font-family: Courier;
}
.table tr th {
color: #aaa;
font: 24px Arial;
font-weight: bold;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run