about summary refs log tree commit diff
path: root/usth/ICT3.2/prac/3/2-vanilla.html
blob: 7f9a60016f88055ca03201b6f396668ae316e31d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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>