Skip to content

Instantly share code, notes, and snippets.

View msbukkuri's full-sized avatar

Maanas Bukkuri msbukkuri

View GitHub Profile
@msbukkuri
msbukkuri / names.js
Created March 5, 2012 06:03
Messing around with Javascript
var fullName = "";
var firstLetter;
/*
fixName function definition should go here.
*/
var fixName = function(name, nameType) {
/***** Begin repeated code block *****/
var appendString;
firstLetter = name.substring(0, 1);
appendString = firstLetter.toUpperCase() + name.substring(1);
/* Import Google Font: Quicksand */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');
/* Base Layout
body {
font-family: 'Quicksand', 'Helvetica Neue', sans-serif;
background: url('https://images.unsplash.com/photo-1597362925519-b01b65ac3445?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') no-repeat center center fixed;
background-size: cover;
background-attachment: fixed;
background-blend-mode: lighten;