about summary refs log tree commit diff
path: root/usth/ICT3.2/prac/3/2-vanilla.html
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT3.2/prac/3/2-vanilla.html')
-rw-r--r--usth/ICT3.2/prac/3/2-vanilla.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/usth/ICT3.2/prac/3/2-vanilla.html b/usth/ICT3.2/prac/3/2-vanilla.html
new file mode 100644
index 0000000..7f9a600
--- /dev/null
+++ b/usth/ICT3.2/prac/3/2-vanilla.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+<body>
+  <a href='https://www.usth.edu.vn' id='usth'>USTH Website</a>
+  <script>
+    let usth = document.getElementById('usth');
+    usth.setAttribute('href', 'https://www.hust.edu.vn');
+    usth.innerHTML = 'HUST Website';
+  </script>
+</body>
+</html>