x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
p {
7
word-spacing: 30px;
8
}
9
</style>
10
</head>
11
<body>
12
13
<p>
14
This is some text. This is some text.
15
</p>
16
17
</body>
18
</html>
<html>
<head>
<meta charset="utf-8">
<style>
p {
word-spacing: 30px;
}
</style>
</head>
<body>
<p>
This is some text. This is some text.
</p>
</body>
</html>