In this video, we begin creating our EPUB, importing prova.txt, and dividing the file into a preview and 10 chapters. We create a table of contents and an index.
Link to the Sigil website: https://sigil-ebook.com/
Link to the Hunspell dictionaries: https://hunspell.memoq.com/
Link to the Roboto font from Google Fonts: https://fonts.google.com/specimen/Roboto
Link to download the finished ePub file: https://drive.google.com/file/d/1yeXf...
Link to download the prova.txt file: https://drive.google.com/file/d/1GK90...
Link to download the stili.odt file: https://drive.google.com/file/d/1Enyo...
Epub Validator link: https://www.ebookit.com/tools/bp/Bo/e...
The CSS code (style sheets) used in the third video:
@font-face { font-family: "Roboto";
font-weight: normal;
font-style: normal;
src: url(../Fonts/Roboto-Regular.ttf);
}
@font-face { font-family: "Roboto";
font-weight: bold;
font-style: normal;
src: url('../Fonts/Roboto-Bold.ttf');
}
h1{
font-weight: bold;
font-family: "Roboto";
text-align: center;
}
p{
text-align: justify;
font-family: "Roboto";
font-weight: 2em;
}
ul{
font-family: "Roboto";
font-weight: 2em;
}
p.title {
font-family: "Roboto";
font-size: 2.5em;
font-weight: bold;
text-align: center;
margin-top: 5em;
margin-bottom: 1em;
}
p.author {
font-family: "Roboto";
font-size: 1.5em;
font-weight: bold;
text-align: center;
margin-top: 4em;
margin-bottom: 2em;
}
div.rights {
font-family: "Roboto";
font-style: normal;
text-align: center;
margin-top: 10em;
}
The HTML code used in the third video can be found in the styles.odt file.