Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions js/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
let today = new Date()
let thisyear = today.getFullYear()
const footer = document.getElementById('footer');
console.log(footer)
// const copyright = document.createElement("p");
// // console.log("this is the copyright",copyright)
// copyright.innerHTML = ` Oksana Feterovskaya &copy ${thisyear}`;
console.log("This is the footer",footer)
const copyright = document.createElement('p');
console.log("This is the",copyright)
copyright.innerHTML = `${thisyear}`
footer.appendChild(copyright)
let Skills = ["game Development","Website Developer"]
let SkillsSection = document.getElementById('skills')
let SkillsList = SkillsSection.querySelector('ul')
for(let i = 0; i<Skills.length; i++){
let skill = document.createElement('li')
skill.innerText = Skills[i]
SkillsList.appendChild(skill)
}