Of HTML, CSS and JavaScript

Slides:



Advertisements
Similar presentations
HTML I. HTML Hypertext mark-up language. Uses tags to identify elements of a page so that a browser such as Internet explorer can render the page on a.
Advertisements

Learning HTML. > Title of page This is my first homepage. Tells Browser This is an HTML page Basic Tags Tells Browser End of HTML page Header information.
Project 8 Creating Style Sheets.
Chapter 8 Creating Style Sheets.
How to Make a Web Page: A Crash Course in HTML programming.
Web Workshop: CSS Objectives: - “What is CSS?” - Structure of CSS - How to use CSS in your webpage.
Computing Concepts Advanced HTML: Tables and Forms.
Web Page Development Identify elements of a Web Page Start Notepad
HTML syntax By Ana Drinceanu. Definition: Syntax refers to the spelling and grammar of a programming language. Computers are inflexible machines that.
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
 HTML stands for Hyper Text Mark-up Language. The coding language used to create documents for the World Wide Web  HTML is composed of tags. HTML tags.
>> 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 CRASH COURSE. What is HTML?  Hyper Text Markup Language  The language used to make web pages  Written by using 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.
Computing Theory: HTML Year 11. Lesson Objective You will: o Be able to define what HTML is - ALL o Be able to write HTML code to create your own web.
Creating Webpage Using HTML
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
HTML: Hyptertext Markup Language Doman’s Sections.
HTML ( HYPER TEXT MARK UP LANGUAGE ). What is HTML HTML describes the content and format of web pages using tags. Ex. Title Tag: A title It’s the job.
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 GUIDE Press F5 and then Click on the links on the left to get to the section you want Section 1: Getting Started Section 2: Moving Banner Section.
Informatics Computer School CS114 Web Publishing HTML Lesson 1.
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.
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.
Are You Smarter Than a 5 th Grader? 1,000,000 5th Grade HTML 5th Grade Syntax 4th Grade HTML 4th Grade Syntax 3rd Grade HTML 3rd Grade Syntax 2nd Grade.
Web Authoring with Dreamweaver. Unit Objectives  Be able to define keywords: HTML, HTTP (protocol), browser, web server, client/server, tag, attribute,
Spiderman ©Marvel Comics Creating Web Pages (part 1)
WEEK -1 ACM 262 ACM 262 Course Notes. HTML What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML.
Your HTML website creating your first html file. Creating an HTML FIle Open note pad from accessories, programs. Write code. Save and view. In 3 Steps.
HTML Tags BTT1O. HTML  Documents written in hypertext markup language can be interpreted by all web browsers.  This language lets the web page developer.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
JavaScript JavaScript is a programming language that web browsers understand. You can use it to make your web pages interactive by: Responding to user.
Week 1: Introduction to HTML and Web Design
Basic concepts of web design
INTRO TO WEB DEVELOPMENT html
CSS Nick Sims.
Introduction to HTML.
Web Basics: HTML/CSS/JavaScript What are they?
HTML – The COMPUTING UNLOCKED GUIDE
HTML basics
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Lecturer (Dept. of Computer Science)
Images in HTML PowerPoint How images are used in HTML
Uppingham Community College
Concepts of HTML, CSS and Javascript
INTRODUCTION TO HTML AND CSS
Key concepts of Computing
Intro to JavaScript CS 1150 Spring 2017.
The Internet and HTML Code
Intro to CSS CS 1150 Fall 2016.
HTML Robert McIntosh
APTECH JANAKPURI INSTITUTE PROVIDING WEB DESIGNING COURSES Address:- J-1,2nd Floor, Opp Metro Pillar No – 559, Janakpuri East, Delhi /42.
Intro to CSS CS 1150 Spring 2017.
Basic HTML and Embed Codes
INTRODUCTION TO HTML AND CSS
Web pages Lesson 3.
Introduction to HTML5.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Computer communications
Basic HTML Workshop.
HTML – The COMPUTING UNLOCKED GUIDE
Web Development 101 Workshop
Creating your first website
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
The language of the internet
The language of the internet
HTTP and HTML HTML HTTP HTTP – Standardize the packaging
Images in HTML PowerPoint How images are used in HTML
Presentation transcript:

Of HTML, CSS and JavaScript Key Concepts All information has been cultivated from W3 Schools, my peers and my own knowledge (and my computer Science Book) Of HTML, CSS and JavaScript

HTML - Html is a language that is all about tagging. It stands for Hyper Text Mark-up Language. Each time you wish to have something appear on the file. You need to define it using tags: Some commonly used tags include: <h1> </h1> This will give the text a title esc feel. By giving it large text and bold font. <form> </form> This gives you access to the input commands which allow text boxes, images and submit buttons to be used.

Examples of HTML One example of HTML is “Z:\KS5\New folder\Web.html”. This is a website that has been written using HTML using a notepad. Other tags include: <p></p> this allows the user to put lots of text between the two tags and they will be displayed as a paragraph. <br></br> this will put a break between two lines.

JavaScript JavaScript is literally “an object-oriented computer programming language commonly used to create interactive effects within web browsers”. JavaScript has the power to change HTML elements. It can either hide or show content. It can also change the style of HTML using the CSS portion of the code. JavaScript can be embedded into a HTML file using the <script> tag. The quotes shows that I took the quote directly from a website. In this case dictionary.com

Examples of JavaScript <!DOCTYPE html> <html> <body> <button onclick="document.getElementById('myImage').src='pic_bulbon.gif'">Turn on the light</button> <img id="myImage" src="pic_bulboff.gif" style="width:100px"> <button onclick="document.getElementById('myImage').src='pic_bulboff.gif'">Turn off the light</button> </body> </html> This is an example of JavaScript within a HTML file. This shows a picture of an off lightbulb and when a button is pressed it will turn on. And there is a second button which will turn the lightbulb off.

CSS Is a special type of language that has a close relationship with HTML. CSS will describe the style of the HTML. It describes how the HTML elements should be displayed within the HTML webpage. HTML defines what should be on a webpage and how big, bold etc… Where as CSS defines the more in depth version about what is on the page. It defines depth of the page and what should outline other things.

Examples of CSS background-color: “COLOUR” – This will define the background colour for your HTML file. h1 { color: “COLOUR” – This will define all text that uses the h1 tag to have this certain text colour p { font-family: verdana – This will define that all text that uses the p tag will use the same font. In this case verdana font.