Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lesson 4 2 #63

Open
wants to merge 19 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# The following line means "all .DS_Store files in any directory"
**/.DS_Store
54 changes: 54 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>My Portfolio</title>
</head>

<body>
<h1>Freydjine Gelin</h1>

<section>
<h2>About</h2>
<p>I am 29 years old. I am an only child.</p>
<p>I was born in Haiti and moved to the US when I was 5 years old.</p>
<p>I like to sing, I am obssessed with kdramas, I am a good cook, but I do not like cooking often.</p>
<p>I want to travel more as I get older. I love learning new things, I am currently trying to learn two languages.</p>
</section>


<section>

<h2>Experience</h2>
<ul>
<li>Project Specialist at Signant Health</li>
<li>Senior Research Assistant at Brigham and Womens Hospital</li>
<li>Project Coordinator IV at Medtronic</li>
</ul>
</section>

<section id="skills">
<h2>Skills</h2>
<ul>

</ul>
</section>

<section>

<h2>Connect</h2>

<p> https://github.com/freydjineg</p>
</section>

<footer></footer>

<script src="js/index.js"></script>

</body>



</html>

33 changes: 33 additions & 0 deletions js/index.js
Original file line number Diff line number Diff line change
@@ -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);
}