-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask_1.html
52 lines (52 loc) · 1.93 KB
/
task_1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table and Card Demo</title>
<link rel="stylesheet" href="task.css">
</head>
<body>
<table border="1" style="border-collapse: collapse ;margin-left: auto; margin-right: auto; ">
<tr>
<th>Main Distro</th>
<th>Package Used</th>
<th>Distro Derivatives</th>
</tr>
<tr>
<td><img src="./Assets/Images/debian-logo-1D6EABB210-seeklogo.com.png" alt="debian" width="50" height="50">Debian </td><br>
<td>.deb (Debian package)</td>
<td>Ubuntu
Linux Mint
Kali Linux
Lubuntu</td>
</tr>
<tr>
<td><img src="./Assets/Images/png-transparent-arch-linux-tgz-linux-angle-triangle-logo-thumbnail.png" alt="arch" width="50" height="50">Arch Linux </td><br>
<td>pkg.tar.zst (Arch package)</td>
<td>Manjaro</td>
</tr>
<tr>
<td><img src="./Assets/Images/Fedora_logo.svg.png" alt="fedora" width="50" height="50">Fedora </td><br>
<td>.rpm (RPM Package Manager)</td>
<td>CentOS (until CentOS 8, now CentOS Stream)
Red Hat Enterprise Linux (RHEL)
Oracle Linux
Scientific Linux</td>
</tr>
<tr>
<td><img src="./Assets/Images/png-transparent-gentoo-linux-linux-distribution-ubuntu-peach-purple-electric-blue-linux-thumbnail.png" alt="gentoo" width="50" height="50">Gentoo </td><br>
<td>.ebuild (Gentoo package)</td>
<td>Funtoo
Sabayon
Calculate Linux
Chrome OS</td>
</tr>
</table>
<div class="card" >
<h2 class="card-title">Wine</h2>
<p1 class="card-description">Wine is not an emulator....</p1>
<p2 class="card-description">It is a compatible layer for linux OS to run windows application</p3>
</div>
</body>
</html>