Update Profile and Add Portfolio

This commit is contained in:
Tchi
2021-08-16 14:52:47 +02:00
parent c1f6d4681c
commit d555996145
22 changed files with 296 additions and 5 deletions
+7
View File
@@ -0,0 +1,7 @@
function importXML(src) {
xmlFile = new XMLHttpRequest();
xmlFile.open("GET", src, false)
xmlFile.send()
return xmlFile.responseXML;
}