This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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; |
OlderNewer