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 pathinsert_tables.php
113 lines (103 loc) · 4.25 KB
/
insert_tables.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php
$article_title = "Maglagay ng talahanayan";
include('layouts/pages_header.php');
include('templates/header.php');
?>
<div class="navbar" id="navbar">
<div><a class="nav active" draggable="false">Talahanayan, larawan at watermark</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="Mga Pagsasanay" draggable="false">Mga Pagsasanay</a></div>
</div>
<div class="body">
<div class="nav_add">
<a href="get_started.php" title="Mga pagsasanay" draggable="false">Mga Pagsasanay</a>
<span>→</span>
<a href="insert_tpw.php" title="Mag-layout" draggable="false">Maglagay ng talahanayan, larawan at watermark</a>
<span>→</span>
<a class="nohov">Maglagay ng talahanayan</a>
</div>
<div class="col">
<div class="parent_nav">
<text class="pn_title">Mga artikulo sa kursong ito:</text>
<a>
<div class="active_tab">Maglagay ng talahanayan<br><img src="<?= $IMG_DIR ?>icon.png" height="16px" style="margin-right: 10px">
<text class="article">Artikulo</text>
</div>
</a>
<a href="insert_pictures.php" title="Artikulo: Maglagay ng larawan" draggable="false">
<div>Maglagay ng larawan<br>
<img src="<?= $IMG_DIR ?>icon.png" height="16px" style="margin-right: 10px">
<text class="article">Artikulo</text>
</div>
</a>
<a href="insert_icon.php" title="Maglagay ng icon" draggable="false">
<div>Maglagay ng icon<br>
<img src="<?= $IMG_DIR ?>icon.png" height="16px" style="margin-right: 10px">
<text class="article">Artikulo</text>
</div>
</a>
<a href="insert_wordart.php" title="Maglagay ng WordArt" draggable="false">
<div>Maglagay ng WordArt<br>
<img src="<?= $IMG_DIR ?>icon.png" height="16px" style="margin-right: 10px">
<text class="article">Artikulo</text>
</div>
</a>
<a href="insert_watermark.php" title="Maglagay ng watermark" draggable="false">
<div>Maglagay ng watermark<br>
<img src="<?= $IMG_DIR ?>icon.png" height="16px" style="margin-right: 10px">
<text class="article">Artikulo</text>
</div>
</a>
<a href="show_ruler.php" title="Maglabas o magtago ng ruler" draggable="false">
<div>Maglabas o magtago ng ruler<br>
<img src="<?= $IMG_DIR ?>icon.png" height="16px" style="margin-right: 10px">
<text class="article">Artikulo</text>
</div>
</a>
<a href="rotate_picshape.php" title="Mag-ikot ng larawan o hugis" draggable="false">
<div>Ikutin ang larawan o hugis<br>
<img src="<?= $IMG_DIR ?>icon.png" height="16px" style="margin-right: 10px">
<text class="article">Artikulo</text>
</div>
</a>
<a href="wrap_text.php" title="Ipalibot ang teksto sa larawan" draggable="false">
<div>Ipalibot ang teksto sa larawan<br>
<img src="<?= $IMG_DIR ?>icon.png" height="16px" style="margin-right: 10px">
<text class="article">Artikulo</text>
</div>
</a>
<div class="next_topic">Susunod na paksa:<br>
<a href="save_document.php">Mag-save at mag-print →</a>
</div>
</div>
<div class="page_content">
<div class="body_head">
<div class="page_title">Maglagay ng talahanayan</div>
</div>
<div class="col_info">
<div class="cont">
<p>Para sa isang pangunahing table, i-click ang <b>Insert > Table</b> at ilipat ang cursor sa grid hanggang sa ma-highlight ang bilang ng columns at rows na nais mo.</p>
<center><img src="<?= $IMG_DIR ?>insert_tables_1.png"></center>
<p>Para sa isang mas malaking table, o upang i-customize ang table, piliin ang <b>Insert > Table > Insert Table</b>.</p>
<center><img src="<?= $IMG_DIR ?>insert_tables_2.png"></center>
<div class="tip">
<text><b>Payo:</b> Kung mayroon ka nang teksto na pinaghiwalay ng mga tab, maaari mo na kagad itong i-convert sa table: Piliin ang <b>Insert > Table > Draw Table</b>.
</div>
</div>
<div class="img">
<img src="<?= $IMG_DIR ?>.png" width="100%" draggable="false">
</div>
</div>
<hr>
<div class="next_article">
<text>Susunod na artikulo:<br><a href="insert_pictures.php" title="Maglagay ng larawan" draggable="false">Maglagay ng larawan →</a></text>
</div>
<hr>
</div>
</div>
<br>
</div>
<?php
include('templates/footer.php');
include('layouts/footer.php');
?>