about summary refs log tree commit diff
path: root/usth/ICT3.2/prac/1/task9.html
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2020-12-03 09:32:13 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2020-12-03 09:32:13 +0700
commit8644699f4d2fce12a41289f9627bc45be9dd1965 (patch)
treed31190ac36d10e297eeab0f6e7a70dc24395695d /usth/ICT3.2/prac/1/task9.html
parent82048ad9e3e4a96a38c8fa6a529798f40e33acb1 (diff)
downloadcp-8644699f4d2fce12a41289f9627bc45be9dd1965.tar.gz
[usth/ICT3.2] Develop web applications
Diffstat (limited to 'usth/ICT3.2/prac/1/task9.html')
-rw-r--r--usth/ICT3.2/prac/1/task9.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/usth/ICT3.2/prac/1/task9.html b/usth/ICT3.2/prac/1/task9.html
new file mode 100644
index 0000000..22ec14f
--- /dev/null
+++ b/usth/ICT3.2/prac/1/task9.html
@@ -0,0 +1,45 @@
+<!DOCTYPE html>
+<html>
+<style>
+table, th, td {
+    border: 2px solid white;
+    border-collapse: collapse;
+}
+th, td { padding: 1em }
+th {
+    font-weight: bold;
+    background-color: #1f497d;
+}
+tr { text-align: center }
+tr:nth-child(odd) { background-color: #d0d8e8 }
+tr:nth-child(even) { background-color: #e9edf4 }
+</style>
+
+<body>
+  <table>
+    <thead>
+      <tr>
+        <th style='width: 21em'>Subject</th>
+        <th style='width: 12em'>ECTS</th>
+      </tr>
+    </thead>
+    <tbody>
+      <tr>
+        <td>Math</td>
+        <td>3</td>
+      </tr>
+      <tr>
+        <td>Physics</td>
+        <td>5</td>
+      </tr>
+      <tr>
+        <td>Chemistry</td>
+        <td>4</td>
+      </tr>
+      <tr>
+        <td>English</td>
+        <td>3</td>
+      </tr>
+    </tbody>
+</body>
+</html>