After unzipping the download of the Summernote distribution, you should copy the Font folder to the same place where you put the summernote.css
file.
In this example, Elmer is the root folder of the website, and both summernote.css
and the Font are copied to the /assets/css
folder.

Similarly, the summernote.js
file summernote.js
copied to the /assets/js
folder. If you do not use plugins or languages, all you need to install.
Here is the code to put in the header to download these files, as shown:
<link rel="stylesheet" type="text/css" charset="utf-8" href="/assets/css/summernote.css"> <script type="text/javascript" charset="utf-8" src="/assets/js/summernote.js"></script>
Note. It is important to include the charset="utf-8"
attribute.
source share