background image programmer

JBS Developer Profile Page

John S


Hi thanks for visiting my page. My background is a Procurement Professional with a focus on supporting Procurement based systems.
With the advent of COVID-19, I took the opportunity to delve into my passion and really start peeling away the foggy layers of coding. So far, I’ve received certificates from SoloLearn on HTML, CSS, JavaScript, jQuery and basic PHP. I've designed, created and implemented a WooCommerce webstore using custom CSS with full integration to social media. Spent countless hours, approx. 5+ hours a day learning to code, starting in April 2020. I still have a mountain to climb but I’m enjoying each minute of it and my hope is to find a job that compliments my new passion.

Feel free to explore my GitHub repository, visit my LinkedIn page or just say hi :D

HTML Certificate

HTML Course

<main id="container">
<div class="card">
<p>HTML is considered the easiest coding language to learn
</p>
</div>
</main>

CSS Fundamentals

CSS Fundamentals

#id .class div{
-webkit-box-reflect: below -3px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(7%, transparent), to(rgba(255, 255, 255, 0.2))); text-align: center;
font-family: 'Dancing Script', cursive;
{

JavaScript

JavaScript

.function fizzBuzz ( number ) { for ( num = 0; num < number; num++) { if (num % 5 == 0 && num % 3 == 0) { console.log ("FizzBuzz") } else if (num % 5 == 0) { console.log("Fizz") } else if (num % 3 == 0 ){ console.log("Buzz") } else { console.log (num) } } } fizzBuzz( 100 );

CSS Fundamentals

PHP Tutorial

<?php if(isset($_POST['submit'])){ session_start(); $_SESSION['name'] = htmlentities($_POST['name']); $_SESSION['email'] = htmlentities($_POST['email']); header('location: page2.php'); }