The footer method (HTML5) defines a footer to the document.
(self, **args)
| 1067 | self._closeTag('header') |
| 1068 | |
| 1069 | def footer(self, **args): |
| 1070 | """The footer method (HTML5) defines a footer to the document. |
| 1071 | """ |
| 1072 | self.write_tag('footer', True, args) |
| 1073 | |
| 1074 | def _footer(self): |
| 1075 | self._closeTag('footer') |