What is the difference between Computer and Software programming?

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

Hyper Text Markup Language.  HTML is a language for describing web pages.  HTML stands for Hyper Text Markup Language  HTML is not a programming language,
WeB application development
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 1.
 To publish information for global distribution, one needs a universally understood language, a kind of publishing mother tongue that all computers may.
HTML and Web Page Design Presented by Frank H. Osborne, Ph. D. © 2005 ID 2950 Technology and the Young Child.
Chapter 2 Introduction to HTML5 Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Designing Web Pages Getting to know HTML... What is HTML? Hyper Text Markup Language HTML is the major language of the Internet’s World Wide Web. Web.
 Using Microsoft Expression Web you can: › Create Web pages and Web sites › Set what you site will look like as you design it › Add text, images, multimedia.
© 2012 Adobe Systems Incorporated. All Rights Reserved. LEARNING THE LANGUAGE OF THE WEB INTRODUCTION TO HTML AND CSS.
Styles with Cascading Style Sheets (CSS) Web Design – Section 4-1 Part or all of this lesson was adapted from the University of Washington’s “Web Design.
The Internet and the World Wide Web. The Internet A Network is a collection of computers and devices that are connected together. The Internet is a worldwide.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 2 Key Concepts 1 Copyright © Terry Felke-Morris.
Objectives: 1. Create a Skeleton HTML 2. View a Skeleton File Through a Server and Browser 3. Learn HTML Body Tags for the Display of Text and Graphics.
Styling and theming Build campaigns in style. What we'll look at... How a web document is structured How HTML and CSS fit together Tools you will need.
>> Introduction to HTML: Tags. Hyper - is the opposite of linear Text – words / sentences / paragraphs Mark-up – Marking the text Language – It is a language.
HTML. WHAT IS HTML HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language is a set of.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
HTML CSS JAVASCRIPT. HTML - Stands for Hyper Text Markup Language HTML is a ‘language’ that describes web pages. This language is a collection of codes.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Creating Webpage Using HTML
HTML Codes Miss B.
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.
HTML Basics Computers. What is an HTML file? *HTML is a format that tells a computer how to display a web page. The documents themselves are plain text.
HTML Basic. What is HTML HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it.
Copyright © 2013 Pearson Education, Inc. Publishing as Pearson Addison-Wesley What did we learn so far? 1.Computer hardware and software 2.Computer experience.
Cascading Style Sheets (CSS) EXPLORING COMPUTER SCIENCE – LESSON 3-5.
Creating Your 1 st Web Page. Tags Refers to anything between on a webpage Most appear in pairs surrounding content Some appear as empty tags (no closing.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
Prepared by Sana Maqbool. Objectives After completing this lesson, the you will be able to… Understand about web authoring Name and explain the uses of.
Prepared by Sana Maqbool. Objectives After completing this lesson, the you will be able to… Understand about web authoring Name and explain the uses of.
HTML Structure & syntax
Basic concepts of web design
Pertemuan 1 Desain web Pertemuan 1
Fall 2016 CSULA Saloni Chacha
Getting Started With HTML
Cascading Style Sheets (CSS)
Online PD Basic HTML The Magic Of Web Pages
Prepared by Dr. Maher Abuhamdeh 2014/2015 First semester
Web Architecture & HTML
Web Basics: HTML/CSS/JavaScript What are they?
HTML basics
HTML.
Styles with Cascading Style Sheets (CSS)
INTRODUCTION TO HTML AND CSS
Key concepts of Computing
Hyper Text Markup Language
Basic HTML PowerPoint How Hyper Text Markup Language Works
Introduction to XHTML.
HTML Vocabulary.
Markup Languages -Use codes, called tags, to provide instructions about formatting and structure of a website HTML (Hypertext Markup Language) Must be.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Essentials of Web Pages
Digital Design – Copyright Law
Introduction to Web Page Design
HTML 12/27/2018.
INTRODUCTION TO HTML AND CSS
Introduction to HTML5.
Programming for webpages
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Web Application Development
CIS 133 mashup Javascript, jQuery and XML
Web Development 101 Workshop
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
The Most Basic HTML Page
Introduction to Web Application Design
Markup Languages -Use codes, called tags, to provide instructions about formatting and structure of a website HTML (Hypertext Markup Language) Must be.
Presentation transcript:

What is the difference between Computer and Software programming? CODING 101 What is the difference between Computer and Software programming?

IMPORTANT FACTS ABOUT THIS OCCUPATION Average Salary: 95.5k 17% Growth Bachelor’s degree required Computer hardware engineer, IT systems manager, computer network architects, computer programmers

Computer Coding Software Coding Translating actions that you want the computer to perform in terms that they will understand: binary language Software Coding Involves using a computer language to develop programs. It is a set of instructions or procedures that allow for a certain type of computer operation.

EXAMPLES OF SOFTWARE Antivirus Audio Email Internet Browser Movie Player Photos/Graphic AVG, Housecall, McAfee iTunes, WinAmp Outlook Firefox, Chrome VLC, Window Media Player Photoshop, CorelDraw, Paint

C C# C++ Java Ruby Python CODING LANGUAGES There are many types of coding languages. Some are basic… some, are more complex. All of these languages formulate common thoughts into a specific language this language is called “source code” = CODING

WHAT IS HTML? H- Hyper T- Text M- Markup L- Language Language used to write Web pages which consists of code (tags) and elements.

DOCUMENT STRUCTURE <HTML> <HEAD> <TITLE>This is my page Title!</TITLE> </HEAD> <BODY> This is my message to the world! </BODY> </HTML> Encloses the entire HTML document Element contains all information about the document. HTML elements that describes the document Displayed at the top of the browser window on the bookmark list (tab) Element contains all the information which is part of the document

HTML vs. CSS HTML and CSS are the core languages for building webpages and web based application

HTML vs. CSS HTML and CSS are the core languages for building webpages and web based application HTML CSS Publish online documents- headings, text, lists, photos Design colors, fonts and layouts Retrieve online info Adapt display across platforms- different types of devices like large or smalls screens Design forms for… searching for info, making reservations, ordering products etc... Easier site maintenance- style can be modified without changing the HTML elements Include apps in their documents spread-sheets, video clips and sound clips Tailor Pages- modify multilpe webpages using a single style sheet

HTML CSS

WHAT IS A TAG? Codes in an HTML document which the browser reads, interprets and produces output. BEFORE I want to <b> BOLD </b> the word bold. AFTER I want to BOLD the word bold. Tags are not visible when an HTML document is view in a browser. Tags always have an opening symbol < and a closing symbol >. Tags usually come in pairs. Ex. <b> and it’s pair was </b>

<p style="color:red"> </p> WHAT IS AN ATTRIBUTE? Attributes provide additional information within an element (line of code within a tag) BEFORE <p style="color:red"> </p> AFTER I am a paragraph

<!DOCTYPE html> <html> <body> <h1 style="color:Tomato;">Let’s Try This Together </h1> <p style="color:DodgerBlue;">Don’t let all of this information freak you out. Again, it’s a language and takes a lot of practice. </p> <p style="color:MediumSeaGreen;">Don’t let it frustrate you. This dictionary does not have all of the lines of code that you need. You’ll have to spend some time looking up elements that you may not be sure of. </p> </body> </html>