Code Editing Lesson 2.

Slides:



Advertisements
Similar presentations
Legal Meetings: Extended Instructions on Movica and Screencast.
Advertisements


WeB application development
UNIT 12 LO4 BE ABLE TO CREATE WEBSITES Cambridge Technicals.
MULTIMEDIA DEVELOPMENT 4.3 : AUTHORING TOOLS. At the end of the lesson, students should be able to: 1. Describe different types of authoring tools Learning.
Website design basics QUME Learning objectives Understand the basic elements of a Web page and how it is produced Be aware of different approaches.
Topics in this presentation: The Web and how it works Difference between Web pages and web sites Web browsers and Web servers HTML purpose and structure.
Creating and Publishing Your own website
1 CS428 Web Engineering Lecture 18 Introduction (PHP - I)
 Video and Audio Files can be played online just by selecting them  Video are flash files and will not work with Quicktime (Apple) or Windows Media.
1 Lesson 1 Quick HTML Know-How HTML and JavaScript BASICS, 4 th Edition Barksdale / Turner.
Web Design Software Alyssa Lagimoniere. Adobe Dreamweaver Pros Relatively low-cost price ($99) Produces very "clean" HTML code; easy to transport and.
Overview of HTML. Three Different Approaches  Text editor like Notepad  HTML editor such as: –KompoZer –DreamWeaver –Microsoft Expression Web –iWeb.
Introduction to Nvu Jing Fu. What is nVu? Free web design and development tool WYSIWYG (/wiziwig/) software Other similar tools: Dreamweaver, Googlepages.
David Halpin Carilion Clinic Carrie Cao Virginia Western Community College.
MGSSE Faculty & Student Technology Workshop By: Peter Eley.
Website Development & Management Introduction & Overview CIT Fall Instructor: John Seydel, Ph.D.
What is Web Authoring? Web Authoring Tools Use Text Editors HTML Editors Web-based Authoring Tools Integrated Web Authoring Tools 8Basic Understanding.
WEBSITE DESIGN COURSE SESSION 1. WORDPRESS WORDPRESS.COM ONLINE FREE SOFTWARE FREE HOSTING BUT WITH A TAG IN IT VERY SIMPLE TO MAKE WORDPRESS.ORG OFFLINE.
Making an HTML Document Notepad Group Bo Kim Dan Carter Han Chong Justin Weaver Kris Lamont.
INTERNET APPLICATION DEVELOPMENT For More visit:
Introduction to HTML. What is a HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup tags  The.
Course Content - Chapter 2 Introduction to HTML Introduction to a Text Editor as a web authoring tool Instructional Activity: Creating a webpage using.
Introduction to HTML. What is HTML? Hyper Text Markup Language (HTML) is a language for describing web pages. HTML is not a programming language, it is.
1 SWEET Simple Wiki Embedded Editing Tool The SWEET Team Michael Kouyessein Brian Sullivan Yuan-Hsun Tang Fangyan Xu The SWEET Website
Creating and Publishing Your own web site PC Version SEAS 001 Professor Ahmadi.

There are two main types of CD that you can create with CD burning software; it is important to burn an Audio CD (Music CD) and not a Data CD. In order.
How the Web Works Building a Website – Lesson 1. How People Access the Web Browsers People access websites using software called a web browser. To view.
Introduction to Python Lesson 1 First Program. Learning Outcomes In this lesson the student will: 1.Learn some important facts about PC’s 2.Learn how.
Quick Questions 1. What does HTML stand for? 2. What are the three main languages of the Web? 3. What is the purpose of the tags? 4. Why do we indent different.
C++ LANGUAGE TUTORIAL LESSON 1 –WRITING YOUR FIRST PROGRAM.
Spiderman ©Marvel Comics Creating Web Pages (part 1)
KompoZer. What is it? A FREE product used to design websites A FREE product used to design websites A WYSIWYG HTML Editor A WYSIWYG HTML Editor –WYSIWYG:
HTML HyperText Markup Language Victoria E. Kozlek.
Learning Aim B.  In this section, you will consider the resources necessary for designing your website.  You will also think about any constraints that.
4. How did you use media technologies in the construction, research, planning and evaluation stages?
Introduction to HTML Hypertext Mark-up Language. HTML HTML = Hypertext Mark-up Language Is just plain simple text marked up by “tags” You can create a.
Web Design Tools Lesson 3. What will you learn in this lesson? The tools of the trade and their advantages The tools of the trade and their advantages.
JING SCREEN CAPTURE Anne Perorazio Information Resources Specialist UM Health Sciences Libraries
EnhanceEdu IIIT-Hyderabad. Agenda What’s a wiki? Comparison with a website Wiki Formatting ‘My’ Page Fun with wiki 2EnhanceEdu, IIIT-Hyderabad.
HTML Structure & syntax
HTML Structure & syntax
Getting Started With HTML
How to make a Screencast
4.01 How Web Pages Work.
Introduction to HTML.
Pre-Production Meet with the client to create a project plan:
4.01 How Web Pages Work.
Features of Authoring Tools
Screencasting Why educators and students benefit from screencasting?
Validating Code Lesson 3.
Cloud Computing Lesson 1
Omri Sharabi Tamar Weiser Omar Shibli Rotem Arnon
by Dr. Nikolas Stylianides
COMPSCI 111 / 111G An introduction to practical computing
Information Technologies Anselm Spoerri PhD (MIT)
Chapter 3 – part2.
Explain what touch develop is to your students:
Introduction to HTML Simple facts yet crucial to beginning of study in fundamentals of web page design!
Securing and Sharing a Presentation
Learning How to Create an Online Interactive Poster using
Uppingham Community College
Screencasting with Kaltura Classroom Hands-on Training
HTML Structure & syntax
4.01 How Web Pages Work.
Web Programming : Building Internet Applications Chris Bates CSE :
Securing and Sharing a Presentation
Web Application Development Using PHP
PLTW Terms PLTW Vocabulary Set #10.
Presentation transcript:

Code Editing Lesson 2

Learning Objectives The learning objectives for this lesson are: Identify code editors that work best for Web development Compare cross-platform code editors Analyze the Brackets code editor Develop a code editing environment by installing the Brackets code editor and extensions related to HTML and CSS code Create a screencast that shows your editor, the extensions that are installed, and how the editor is used to write HTML and CSS code. 2/11/2017 Lesson 2, Code Editing

Resources Use these resources to achieve the learning objectives: Wikipedia page on "Comparison of Text Editors" Web search for plain text, non-IDE, cross-platform code editors Brackets – Get Brackets from their website Brackets extensions – These are installed from within Brackets after you have it installed My Brackets playlist on YouTube Screencast-o-Matic – for getting help when you have trouble WBU Online Library 2/11/2017 Lesson 2, Code Editing

Terminology You need to understand the following terms for this lesson: Code editor Code editors are computer applications (like Brackets) that enable the user to write code for computers in a variety of computer languages. The only languages that are important for this class are HTML, CSS, and JavaScript. WYSIWYG "What you see is what you get" (WYSIWYG) editors are full-featured, Integrated Development Environment (IDE) code editors that enable Web developers to build websites without having to know all the details of the code being used. WYSIWYG editors may not be used in this class. (Example: Dreamweaver) 2/11/2017 Lesson 2, Code Editing

Terminology Terminology (continued) Plain text File extension "Plain text" describes code that is both meaningful to a computer as well as being readable by a human. Coding languages like HTML, CSS, and JavaScript are simply plain text files that are saved with a special file extension. File extension A "file extension" is a short string of characters that follows the last period after a file name. The purpose of a file extension is to tell the computer what program to use to run that file. (Example: index.html) 2/11/2017 Lesson 2, Code Editing

2/11/2017 Lesson 2, Code Editing

Terminology Terminology (continued) Cross-platform Screencast Refers to a computer application that runs about the same on Windows, Mac, Linux, or other computer operating systems. Screencast A screencast is an audio and video creation of something occurring on your computer screen. (Examples: Screencast-o-Matic for PCs, QuickTime Player for Mac) Screencasts are much better than simple screen shots. Using a microphone, you are able to both describe and show what is happening on your computer and share this with another person so he/she can understand the full context of a problem or question. 2/11/2017 Lesson 2, Code Editing

2/11/2017 Lesson 2, Code Editing

Collaboration There are two discussion forums for this lesson: Due by Wednesday night at midnight Do some research using the suggested resources and compare three free, cross-platform, non-IDE code editors. The length of your posting should be about 100-200 words. Be sure to cite your sources. Post 2 messages. (Learning objectives 1, 2, & 3) Due by Sunday night at midnight Peer-to-Peer Support. Support and learn from one another by posting questions about problems and solutions you have with this week's lesson. 2/11/2017 Lesson 2, Code Editing

Test Due by Sunday night at midnight. Use the link found in Blackboard to take the test for this lesson. 2/11/2017 Lesson 2, Code Editing