<?php
/**
* HTML2PDF Librairy - example
*
* HTML => PDF convertor
* distributed under the LGPL License
*
* @author Laurent MINGUET <webmaster@html2pdf.fr>
*
* isset($_GET['vuehtml']) is not mandatory
* it allow to display the result in the HTML format
*/
// get the HTML
session_start();
ob_start();
?>
<link rel="StyleSheet" type="text/css" href="css/control.css">
<link rel="StyleSheet" type="text/css" href="css/tablemoo.css">
<style type="text/css">
<!--
table.page_header {width: 100%;color:white; border: none; background-color: #2776B0; border-bottom: solid 1mm #12466B; padding: 2mm;font-size: 4mm }
table.page_footer {width: 100%; border: none; background-color: white; border-top: solid 1mm #ED9F47; padding: 2mm}
div.note {border: solid 1mm #DDDDDD;background-color: #EEEEEE; padding: 2mm; border-radius: 2mm; width: 100%; }
ul.main { width: 95%; list-style-type: square; }
ul.main li { padding-bottom: 2mm; }
h1 { text-align: center; font-size: 15mm}
h3 { text-align: center; font-size: 12mm}
img {border: medium none;width: 380px;}
.blocindic{
margin-bottom: 10px;
margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
float: left;
width: auto !important;
clear: none !important;
}
.keynum {
font-size: 120%;
/*width: auto !important;*/
}
.source {
margin-left:10px;
}
.separ{
margin: 5px 20px;
width: 150px;
height: 7px;
background-repeat: no-repeat;
float:left;
clear:both;
}
.tdSimple, .colHeaderSimple, .colHeaderTitre {
font: 5px arial;
}
-->
</style>
<!------------------------------------------------>
<!-- LA PREMIERE PAGE-->
<!------------------------------------------------>
.........
Partager