Free Online Class: Stock Market Investing Fundamentals
In this video, we’ll introduce you to the basics of stock marketing investing. Gain an understanding of what moves stock prices and how...
278 articles
At Noble Desktop you can learn how to code websites, build iOS apps, make graphics, and more. From our front-end coding bootcamp to Photoshop classes, we offer a variety of comprehensive day, evening, and weekend training classes as well as certificate programs in web design, web development, HTML email, and more. Courses are available in-person (at our training facility in Soho), live online, and customized corporate or private training. Our course materials and workbooks are used by colleges and schools worldwide. Learn a skill today and start using it tomorrow.
In this video, we’ll introduce you to the basics of stock marketing investing. Gain an understanding of what moves stock prices and how...
Learn about designing email that looks great on both desktop and mobile. View the Presentation Slides. LEARN MORE: Certificate in...
Learn about designing for mobile websites and apps. In this free class, we’ll cover numerous resources and info. Want to learn more?...
Want to animate your webpages or create rich HTML5 banner ads? Learn how the GreenSock Animation Platform can breathe new life into...
If you’re not saving your vector graphics (icons, logos, etc) as SVG for use in your webpages, you should be! Instead of using pixel-based...
In order for your business to be listed, you need a Google My Business account for each of your locations. When it comes to finding a local...
This seminar will reveal some simple but effective best practices and considerations for the small business or nonprofit seeking to use...
Join Certified SEO Instructor Steve Scott for this informative seminar where he'll go through the 14 areas you should be thinking about to...
Your website is one of the first interactions that prospective customers have with your business. In this presentation, you’ll learn the...
Sublime Text allows you to quickly sort lines alphabetically. Select the lines you want to sort and choose Edit > Sort Lines. You can also...
Sublime Text allows you to quickly join lines together. Select the lines and hit Cmd–J (Mac) or Ctrl–J (Windows). If nothing is...
Sublime Text with Emmet allows you to automatically update width and height attributes on img tags. Place the cursor inside an img tag and...
Sublime Text with Emmet allows you to code faster by typing an abbreviation and then expanding the abbreviation with the Tab key. If you...
In Sublime Text, you can select lines with a keystroke. Hit Cmd–L (Mac) or Ctrl–L (Windows) to select the current line. Repeat the...
Sublime Text remembers the last 15 items you’ve copied and you can paste any one of them! Hit Cmd–Option–V (Mac) or Ctrl–K then Ctrl–V...
Sublime text allows you to quickly convert selected text to upper case or lower case. To convert to upper case: In quick succession,...
Sublime Text with Emmet allows you to quickly adjust numbers in your code. For example, you want to change 20px to 22px. Instead of...
Some text editors only allow one text cursor, but Sublime Text allows multiple. This is really useful, for example, if you want to insert...
In CSS, type tac and hit Tab to expand to text-align: center;
Comments tell the web browser to ignore a section of code. We use them to document and debug our code. To comment out one or more lines...
To quickly duplicate a line of code, place the cursor anywhere in the line and hit Cmd–Shift–D(Mac) or Ctrl–Shift–D (Windows).
This tip is really useful for building HTML emails because HTML emails can become very cluttered with inline CSS. To fold all HTML...
Sublime Text with Emmet allows you to code faster by typing an abbreviation and then expanding the abbreviation with the Tab key. To...
You can create a tag with a class or ID. For example, if you type p.info and hit Tab, Emmet expands p.info to <p class="info"></p>. If...