This repository has been archived by the owner on Sep 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsave_print.php
61 lines (59 loc) · 2.25 KB
/
save_print.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
$tutorial_title = "Mag-save at mag-print";
include("layouts/tutorial_header.php");
include('templates/header.php');
?>
<div class="navbar" id="navbar">
<div><a class="nav active" draggable="false">Mag-save at mag-print</a></div>
<div><a class="nav" href="index.php" title="Home" draggable="false">Home</a></div>
<div><a class="nav" href="get_started.php" title="Home" draggable="false">Mga Pagsasanay</a></div>
</div>
<div class="body">
<div class="title">
<text>Mag-save at mag-print</text>
</div>
<div class="subtitle">
<text>Alamin kung paano mag-save o mag-print ng dokumento.</text>
</div>
<div class="tutorials">
<div>
<a href="save_document.php" draggable="false" title="Artikulo: Mag-save ng dokumento">
<div class="tab"><img src="<?= $IMG_DIR ?>icon.png" height="19px">Mag-save ng dokumento</div>
</a>
</div>
<div>
<a href="convert_pdf.php" draggable="false" title="Artikulo: Palitan o i-save upang gawing PDF file">
<div class="tab"><img src="<?= $IMG_DIR ?>icon.png" height="19px">Palitan o i-save upang gawing PDF file</div>
</a>
</div>
<div>
<a href="edit_pdf.php" draggable="false" title="Artikulo: I-edit ang PDF file">
<div class="tab"><img src="<?= $IMG_DIR ?>icon.png" height="19px">I-edit ang PDF file</div>
</a>
</div>
<div>
<a href="print_document.php" draggable="false" title="Artikulo: I-print ang iyong dokumento">
<div class="tab"><img src="<?= $IMG_DIR ?>icon.png" height="19px">I-print ang iyong dokumento</div>
</a>
</div>
<div>
<a href="print_envelope.php" draggable="false" title="Artikulo: Mag-print ng envelope">
<div class="tab"><img src="<?= $IMG_DIR ?>icon.png" height="19px">Mag-print ng envelope</div>
</a>
</div>
<div>
<a href="print_address.php" draggable="false" title="Artikulo: Mag-print ng Return Address Labels">
<div class="tab"><img src="<?= $IMG_DIR ?>icon.png" height="19px">Mag-print ng Return Address Labels</div>
</a>
</div>
<div>
<a href="print_mailing.php" draggable="false" title="Artikulo: Mag-print ng Mailing Labels">
<div class="tab"><img src="<?= $IMG_DIR ?>icon.png" height="19px">Mag-print ng Mailing Labels</div>
</a>
</div>
</div>
</div>
<?php
include('templates/footer.php');
include('layouts/footer.php');
?>