-
Notifications
You must be signed in to change notification settings - Fork 2
/
internet.html
148 lines (138 loc) · 5.35 KB
/
internet.html
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<html><head>
<link rel="stylesheet" href="header.css">
<link rel="stylesheet" href="content.css">
<link rel="stylesheet" href="footer.css">
</head>
<body>
<div id="header">
<table>
<tbody>
<tr>
<td nowrap="" class="webStoreCol">
<span class="webStoreCubTxt">Cub</span>
<span class="webStoreTxt">Web Store</span>
</td>
<td nowrap="">
<ul>
<li><a class="active" href="apt://kolourpaint4">Home</a></li>
<li><a href="#news">How To</a></li>
</ul>
</td>
<td class="searchApp">
<label>Search App</label>
<input type="text" id="search">
</td>
</tr>
</tbody>
</table>
</div>
<table id="contentTable">
<tbody><tr>
<td class="leftTd">
<div class="leftTdContent">
<img src="assets/img/CubLinux.svg">
<div class="list-group">
<a href="office.html" class="list-group-item firstItem">Office</a>
<a href="video.html" class="list-group-item">Video</a>
<a href="music.html" class="list-group-item">Music</a>
<a href="photo.html" class="list-group-item">Photo</a>
<a href="internet.html" class="list-group-item">Internet</a>
<a href="system.html" class="list-group-item">System</a>
<a href="games.html" class="list-group-item">Games</a>
<a href="social.html" class="list-group-item">Social Media</a>
<a href="accessories.html" class="list-group-item lastItem">Accessories</a>
</div>
</div>
</td>
<td class="rightTd">
<div class="appText">Internet Software</div>
<div class="apps-container">
<div class="app">
<div>
<img src="./assets/img/internet/filezilla.png">
<div>
<h3>Filezilla</h3>
<p>FileZilla is a cross-platform graphical FTP, SFTP, and FTPS file management tool for Windows, Linux, Mac OS X, and more.</p>
<div class="actions">
<button type="button">Install</button>
</div>
</div>
</div>
</div>
<div class="app">
<div>
<img src="./assets/img/internet/bluefish.jpg">
<div>
<h3>Bluefish</h3>
<p>Bluefish is a free software advanced text editor with a variety of tools for programming in general and the development of dynamic websites.</p>
<div class="actions">
<button type="button">Install</button>
</div>
</div>
</div>
</div>
<div class="app">
<div>
<img src="./assets/img/internet/thunderbird.png">
<div>
<h3>Thunderbird</h3>
<p>Mozilla Thunderbird is a free, open source, cross-platform email, news, and chat client developed by the Mozilla Foundation.</p>
<div class="actions">
<button type="button">Install</button>
</div>
</div>
</div>
</div>
<div class="app">
<div>
<img src="./assets/img/internet/dropbox.png">
<div>
<h3>Dropbox</h3>
<p>Dropbox keeps your files safe, synced, and easy to share. Bring your photos, docs, and videos anywhere and never lose a file again.</p>
<div class="actions">
<button type="button">Install</button>
</div>
</div>
</div>
</div>
<div class="app">
<div>
<img src="./assets/img/internet/box.jpg">
<div>
<h3>Box</h3>
<p>Box offers secure content management and collaboration for individuals, teams and businesses, enabling secure file sharing and access to your files online.</p>
<div class="actions">
<button type="button">Install</button>
</div>
</div>
</div>
</div>
<div class="app">
<div>
<img src="./assets/img/internet/drive.png">
<div>
<h3>Google Drive</h3>
<p>Google Drive is a safe place for all your files and puts them within reach from any smartphone, tablet, or computer.</p>
<div class="actions">
<button type="button">Install</button>
</div>
</div>
</div>
</div>
<div class="app">
<div>
<img src="./assets/img/internet/transmission.png">
<div>
<h3>Transmission</h3>
<p>Transmission bittorrent client runs natively on multiple operating systems.</p>
<div class="actions">
<button type="button">Install</button>
</div>
</div>
</div>
</div>
</div></td></tr></tbody></table>
<div class="footer">
</div>
<script src="js/links.js"></script>
</body></html>