adobe brackets - introduction/ walkthrough (some basic features)

20
Adobe Brackets BY SAHIL BANSAL BCA 4B(Moarning) 08217702014

Upload: sahil-bansal

Post on 15-Feb-2017

186 views

Category:

Technology


1 download

TRANSCRIPT

Page 1: Adobe Brackets - Introduction/ walkthrough (some basic features)

AdobeBrackets

BY SAHIL BANSALBCA 4B(Moarning)08217702014

Page 2: Adobe Brackets - Introduction/ walkthrough (some basic features)

Brackets?

0 Tool for editing HTML, CSS, and JavaScript files0 Written in HTML, CSS, and JavaScript0 Extensible

0 Comes in two flavors0 Brackets – open source (free)

0 http://download.brackets.io/

0 Edge Code – part of Creative Cloud0 Extended with Adobe specific enhancements0 Will discuss more when covering web fonts today

Page 3: Adobe Brackets - Introduction/ walkthrough (some basic features)

BRACKETS VS. EDGE CODE

Page 4: Adobe Brackets - Introduction/ walkthrough (some basic features)

WHY BRACKETS?

•0 Beginning students don’t need to know Dreamweaver

• 0 They need to know HTML and CSS

• 0 Dreamweaver will help their productivity after they know the basics

•0 Think of Brackets as a replacement for:

Page 5: Adobe Brackets - Introduction/ walkthrough (some basic features)

Basic Process

•0 Create HTML/ CSS in Notepad or Text Wrangler…

•0 Save file

•0 Open browser, point to saved file

•0 Use debug tools to identify problem

•0 Modify HTML/ CSS in Notepad or Text Wrangler…

•0 Save file (again)

•0 Refresh (or reopen browser)

Page 6: Adobe Brackets - Introduction/ walkthrough (some basic features)

Basic Student Process

0 Student focuses on process (painful after time)

0 Brackets – live preview

0 Brackets on one side, browser on other side

0 Make a change to code in Brackets and immediately see change in browser

0 Now student can focus on learning HTML and CSS

Page 7: Adobe Brackets - Introduction/ walkthrough (some basic features)

Example

Page 8: Adobe Brackets - Introduction/ walkthrough (some basic features)

Brackets Interface

0 Minimal (by design)0 File > New(OPEN DOCUMENT)

Page 9: Adobe Brackets - Introduction/ walkthrough (some basic features)

Keyboard Shortcuts

0 Ctrl + Shift + o [quick open file]

0 Ctrl + e [quick edit]

Page 11: Adobe Brackets - Introduction/ walkthrough (some basic features)

BracketsExtensions•0 Extensible

• 0 Help > Show Extensions Folder

• 0 https://github.com/adobe/brackets/wiki/Brackets‐ Extensions

• 0 Store zip file locally

• 0 Extract contents into extensions folder

• 0 Reload Brackets

• 0 For example – HTML templates extension

• 0 When create file…

• 0 Edit > HTML Templates

Page 12: Adobe Brackets - Introduction/ walkthrough (some basic features)

HTML Templates

0 Choose from list

Page 13: Adobe Brackets - Introduction/ walkthrough (some basic features)

HTML Templates

0 Starting HTML5 document0 Again, let students focus on learning, not process

Page 14: Adobe Brackets - Introduction/ walkthrough (some basic features)

Extensions

0 Show Shortcuts – built in as of sprint 15

Page 15: Adobe Brackets - Introduction/ walkthrough (some basic features)

Extensions – CanIUse

0 CanIUse – inline version of CanIUse.com site

Page 16: Adobe Brackets - Introduction/ walkthrough (some basic features)

Extensions ‐ Validate

0 W3C validator – code should validate

Page 17: Adobe Brackets - Introduction/ walkthrough (some basic features)

Extensions ‐ Hover

0 Hover preview – quickly see images/ colors

Page 18: Adobe Brackets - Introduction/ walkthrough (some basic features)

Extensions ‐ Fonts

0 Fonts – add fonts to page – Brackets relies on Google fonts, Edge Code on Edge Web Fonts

0 Edit > Web Fonts…0 For Brackets, need to include following line at top of

CSS file@import url(…);

Page 19: Adobe Brackets - Introduction/ walkthrough (some basic features)

Review

0 Brackets is an editor for HTML, CSS, and JavaScript0 It is highly extensible (and there are already a number

of developed extensions)0 It is open source (free)0 There is a corresponding Adobe product (Edge Code)