I’m a passionate new media designer and web developer with 10 years of experience in structuring, developing and implementing business websites and online applications. Seeking an opportunity to leverage my skill set with modern web technologies, design, marketing and project management in a technology forward company.
##Sass Functions Cheat Sheet
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
| ** TERMINOLOGY: | |
| CLI - Command Line Interface: interaction with computer through lines of texts and commands (black and white) | |
| GUI - Graphic User Iterface: user interface that interacts with computer visually (colorful) | |
| ** 3 LEVELS OF KNOWING: | |
| 1. Knowing and Understanding | |
| 2. Teaching and Reinforcing | |
| 3. Grocking - understanding intuitively | |
| ** Traits of a developer: |
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
| // Basic Concepts // | |
| Introduction to Javascript - a programing language for the web. Javascript enables you to add powerfull interactions to websites. | |
| //Students will learn basic javascript concepts such as variables, data types, operators, conditionals and functions | |
| // Create a new file inside notes folder named javascript.js | |
| ** Example of Comments ** | |
| // Javascript Basics - Examples |
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
| ------------/// Cascading Style Sheets ///----------- | |
| CSS stands for Cascading Style Sheets and describes how HTML elements are displayed on screen, paper and other media. | |
| There are three ways to include styles to an element: | |
| Inline using the style="" attribute | |
| Internal using the <style></style> element, placed within the <head></head> element | |
| External stylesheets linked within the <head></head> element | |
| **The best way to apply styles to your project is by using an external stylesheet. |
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
| -------------------/// HTML STRUCTURE ///----------------------- | |
| HTML - stands for Hyper Text Markup Language. | |
| Markup Languages are designed for the processing, defining and presenting text or data. | |
| HTML is composed of a tree of HTML elements. Each element is an individual component and may contain content. | |
| **Elements without content are called empty tags. An empty tag is self closing, ex: <br /> ** | |
| Tags are used to begin and end elements in HTML. Tag names are used within element start and end tags to describe the element. | |
| Example of a start tag: <a> |

