diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..0414e16c
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+# The following line means "all .DS_Store files in any directory"
+**/.DS_Store
diff --git a/index.html b/index.html
new file mode 100644
index 00000000..7eb52ee7
--- /dev/null
+++ b/index.html
@@ -0,0 +1,54 @@
+
+
+
+
+
+ My Portfolio
+
+
+
+ Freydjine Gelin
+
+
+ About
+ I am 29 years old. I am an only child.
+ I was born in Haiti and moved to the US when I was 5 years old.
+ I like to sing, I am obssessed with kdramas, I am a good cook, but I do not like cooking often.
+ I want to travel more as I get older. I love learning new things, I am currently trying to learn two languages.
+
+
+
+
+
+ Experience
+
+ - Project Specialist at Signant Health
+ - Senior Research Assistant at Brigham and Womens Hospital
+ - Project Coordinator IV at Medtronic
+
+
+
+
+
+
+
+ Connect
+
+ https://github.com/freydjineg
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/js/index.js b/js/index.js
new file mode 100644
index 00000000..d1719ed6
--- /dev/null
+++ b/js/index.js
@@ -0,0 +1,33 @@
+const today = new Date();
+let thisYear = today.getFullYear();
+
+const footer = document.querySelector('footer');
+
+const copyright = document.createElement('p');
+
+copyright.innerHTML = `Freydjne Gelin ${thisYear}`;
+footer.appendChild(copyright);
+
+let skills = [
+ "Project Management",
+ "CRM Management",
+ "Teleform verifier Processing",
+ "Excellent Time Management skills",
+ "Excellent written and verbal communication skills and interpersonal skills",
+ "Data Entry"
+ ];
+
+ let sLen = skills.length;
+ const skillsSection = document.querySelector('skills');
+
+ const skillsList = skillsSection.querySelector('ul');
+
+ for (let i = 0; i < sLen; i++) {
+ let skill = skillsSection.createElement('li');
+ skill.innerText = skills[i];
+ skillsList.appendChild(skill);
+ }
+
+
+
+