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
|
<!DOCTYPE html>
<title>Applications Slide</title>
<body>
<div class="slide" id="apps">
<div class="header">
<h1 class="slidetitle">Find everything you need on your new install</h1>
</div>
<div class="main">
<p id="full-text">Kubuntu comes with most of the applications that you need on a daily basis. <br> For everything else you can install more software in Discover our software center</p>
<table>
<tr>
<td>
<div><img src="icons/internet-web-browser.png" width="64px" height="64px"></div>
<div class="title">Firefox</div>
<div class="description">Web Browser</div>
<td>
<div><img src="icons/email.png" width="64px" height="64px"></div>
<div class="title">Kontact</div>
<div class="description">Email, Contacts</div>
<td>
<div><img src="icons/libreoffice.png" width="64px" height="64px"></div>
<div class="title">LibreOffice</div>
<div class="description">Office Suite</div>
<td>
<div><img src="icons/discover.png" width="64px" height="64px"></div>
<div class="title">Discover</div>
<div class="description">Software Center</div>
<td></td>
</tr>
<tr>
<td>
<div><img src="icons/amarok.png" width="64px" height="64px"></div>
<div class="title">Amarok</div>
<div class="description">Music Player</div>
<td>
<div><img src="icons/dragonplayer.png" width="64px" height="64px"></div>
<div class="title">Dragon Player</div>
<div class="description">Video Player</div>
<td>
<div><img src="icons/okular.png"></div>
<div class="title">Okular</div>
<div class="description">Document Viewer</div>
<td>
<div><img src="icons/dolphin.png"></div>
<div class="title">Dophin</div>
<div class="description">File Manager</div>
</tr>
</table>
</div>
</div>
</body>
|