Skip to content

Commit

Permalink
Added vue icon and Js timer
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonahv committed Jul 2, 2023
1 parent 0e42afe commit 7eaf272
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 27 deletions.
4 changes: 2 additions & 2 deletions challenges.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<body>
<nav class="navbar">
<div class="container">
<a href="/portfolio-site" class="logo">&#60;Yonah Veffer - Web developer&#62;</a>
<a href="/portfolio-site.html" class="logo">&#60;Yonah Veffer - Web developer&#62;</a>
<ul class="navigation-items">
<li><a href="/portfolio-site">About me</a></li>
<li><a href="/portfolio-site.html">About me</a></li>
<li><a href="/portfolio-site#skills">Skills</a></li>
<li><a href="./challenges.html">Challenges</a></li>
<li><a href="#contact">Contact</a></li>
Expand Down
64 changes: 41 additions & 23 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,16 @@
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&family=Source+Code+Pro&display=swap" rel="stylesheet">


<script>
//I put this here so it wouldn't load on the challenges page
let startTime = new Date('November 22, 2022 09:00:00')
const intlNumberFormatter = new Intl.NumberFormat("en-US")
setInterval(function() {
let elapsedTime = Math.floor((Date.now() - startTime) / 1000);
document.getElementById("time-coding").innerHTML =intlNumberFormatter.format(elapsedTime);

}, 1000);
</script>

</head>
<body>
Expand All @@ -28,44 +37,53 @@
<header class="header">
<div class="container">
<div>
<h2>About me</h2>
<h2>Hi I'm Yonah</h2>
<p>
Hello, my name is Yonah Veffer and I am a web developer.
I began my coding journey in mid-2022, and since then, I have been passionately dedicated to learning the art of programming.
I have recently created a portfolio site from scratch using HTML, CSS, and JS to showcase my skills.

I began my coding journey in 2022, and since then, I've been dedicated to learning the art of programming.
I have recently created this portfolio site from scratch using HTML, CSS, and JS to showcase my skills.
<br>
To enhance my learning experience, I have been using Codecademy as my primary learning resource. Through the various programming exercises,
I have gained a deep understanding of different programming concepts, including data structures, algorithms, and web development technologies.
I have gained an understanding of different programming concepts, including data structures, algorithms, and web development technologies.
<br><br>
I believe that practice is the key to success in programming. As a result,
I have been actively seeking out new projects to work on and have been honing my skills through personal projects and collaborations with other developers.
I am committed to constantly improving my skills and keeping up with the latest developments in the field.
<br>
I am excited about the prospect of landing a job soon as a web developer.
With my strong foundation in coding and my eagerness to learn and grow, I am confident that I can contribute meaningfully to any development team.
I look forward to the opportunity to put my skills to use and to further my career as a web developer.
</p>
<p>It's been <span id="time-coding"></span> seconds since I started coding. </p>

<br>
</div>
<img src="Portfolio pic.png" alt="Me">
</div>
</header>


<section class="skills">
<div class="container">
<h2 id="skills">Skills</h2>
<div class="coding-icons">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/html5/html5-original-wordmark.svg" alt="HTML 5 icon" title="HTML 5"/>
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/css3/css3-original-wordmark.svg" alt="CSS3 icon" title="CSS 3"/>
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-original.svg" alt="JavaScript icon" title="javascript" />
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/github/github-original-wordmark.svg" alt="GitHub icon" title="GitHub"/>
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/git/git-original.svg" alt="Git icon" title="Git" />
</div>
<section class="projects">
<div class="container">
<h2 id="projects">Projects</h2>
<p>Here is a simple project I made with Vue.js - <a href="https://yonahv.github.io/timer/">Reaction timer</a></p>
<p>For more check out my Github - <a href="https://github.com/Yonahv">GitHub </a></p>
<p>A couple of JS challenges here - <a href="./challenges.html">Challenges</a></p>
</div>
</section>

<section class="skills">
<div class="container">
<h2 id="skills">Skills</h2>
<div class="coding-icons">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/html5/html5-original-wordmark.svg" alt="HTML 5 icon" title="HTML 5"/>
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/css3/css3-original-wordmark.svg" alt="CSS3 icon" title="CSS 3"/>
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-original.svg" alt="JavaScript icon" title="javascript" />
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/vuejs/vuejs-original-wordmark.svg" alt="Vue icon" title="vuejs"/>
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/github/github-original-wordmark.svg" alt="GitHub icon" title="GitHub"/>
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/git/git-original.svg" alt="Git icon" title="Git" />
</div>


</div>
</section>
</section>



<footer id="contact">
<h2>Contact Me</h2>
Expand All @@ -79,6 +97,6 @@ <h2>Contact Me</h2>



<script src="script.js"></script>
<script src="/script.js"></script>
</body>
</html>
13 changes: 12 additions & 1 deletion script.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@

//CHALLENGES PAGE//


///////////////////////////////////////////////////////////////
///// EXCERCISE 1 - Print all even numbers from 0 – 10 /////
/////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -31,7 +35,7 @@ const returnEvenNumbers = (arr) => {
};


returnEvenNumbersEvent()
// returnEvenNumbersEvent()


/////////////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -279,6 +283,13 @@ const returnEvenNumbers = (arr) => {
})



//Function to calculate time past since I started coding//






/////////I will use the code below to refactor and make the code less DRY//////////

Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ h1, h2 {
color: #fff;
height: 60px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.navbar a{
Expand Down

0 comments on commit 7eaf272

Please sign in to comment.