Skip to content

Commit

Permalink
Merge pull request #1411 from lucasnetau/utf-8-doc
Browse files Browse the repository at this point in the history
Update docs to fix UTF-8 encoding issues
  • Loading branch information
kevinchappell authored Sep 13, 2023
2 parents 56730b5 + 25b0083 commit 892b028
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,20 @@ Once you have the module/plugin installed, include it in your build process for

## Basic Example

**Note**: The document charset should be set to utf-8 to ensure CSS font styles are rendered correctly

```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Example formBuilder</title>
<!-- Required meta tag -->
<meta charset="utf-8">
<title>Example formBuilder</title>
</head>
<body>
<div id="fb-editor"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.13.2/jquery-ui.min.js"></script>
<script src="https://formbuilder.online/assets/js/form-builder.min.js"></script>
<script>
jQuery(function($) {
Expand Down

0 comments on commit 892b028

Please sign in to comment.