This repository was 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
Expand file tree
/
Copy pathwrite_edit.php
More file actions
56 lines (54 loc) · 2.06 KB
/
write_edit.php
File metadata and controls
56 lines (54 loc) · 2.06 KB
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
<?php
$tutorial_title = "Magsulat at mag-edit";
include("layouts/tutorial_header.php");
include('templates/header.php');
?>
<div class="navbar" id="navbar">
<div><a class="nav active" draggable="false">Magsulat at mag-edit</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>Magsulat at mag-edit</text>
</div>
<div class="subtitle">
<text>Alamin kung paano magsulat at mag-edit ng inyong dokumento.</text>
</div>
<div class="tutorials">
<div>
<a href="add_text.php" draggable="false" title="Artikulo: Maglagay ar=t mag-edit ng teksto">
<div class="tab"><img src="<?= $IMG_DIR ?>icon.png" height="19px">Maglagay at mag-edit ng teksto</div>
</a>
</div>
<div>
<a href="find_text.php" draggable="false" title="Artikulo: Maghanap at magpalit ng teksto">
<div class="tab"><img src="<?= $IMG_DIR ?>icon.png" height="19px">Maghanap at magpalit ng teksto</div>
</a>
</div>
<div>
<a href="check_sgc.php" draggable="false" title="Artikulo: Suriin ang spelling, gramatika, at kalinawan">
<div class="tab"><img src="<?= $IMG_DIR ?>icon.png" height="19px">Suriin ang spelling, gramatika, at kalinawan</div>
</a>
</div>
<div>
<a href="word_count.php" draggable="false" title="Artikulo: Ipakita ang bilang ng mga salita">
<div class="tab"><img src="<?= $IMG_DIR ?>icon.png" height="19px">Ipakita ang bilang ng mga salita</div>
</a>
</div>
<div>
<a href="insert_hlink.php" draggable="false" title="Artikulo: Maglagay ng hyperlink">
<div class="tab"><img src="<?= $IMG_DIR ?>icon.png" height="19px">Maglagay ng hyperlink</div>
</a>
</div>
<div>
<a href="remove_hlink.php" draggable="false" title="Artikulo: Magtanggal ng hyperlink">
<div class="tab"><img src="<?= $IMG_DIR ?>icon.png" height="19px">Magtanggal ng hyperlink</div>
</a>
</div>
</div>
</div>
<?php
include('templates/footer.php');
include('layouts/footer.php');
?>