# 文字设置
可以设置文字大小,可以设置字体。注意:文字大小只能7个值,多了无效。[在线预览](http://output.jsbin.com/heditaz)
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>xeditor</title>
<script src="https://unpkg.com/xeditor"></script>
</head>
<body>
<div id="xe" class="xe"></div>
<div id="html"></div>
<script>
var myEditor = new window.xEditor('#xe')
myEditor.config({
font: {
fontname: [
'Courier New',
],
}
});
myEditor.create();
</script>
</body>
</html>
```
