WJEC GCSE Computer Science

Slides:



Advertisements
Similar presentations
Introduction to HTML
Advertisements

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.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
Html: getting started HTML is hyper text markup language. It is what web browsers look at on the Internet. HTML documents should be created in a simple.
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,
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 1.
HTML. We’ll learn … What HTML is What tags are What a basic web page looks like What 3 HTML tags are required What HTML comments look like How to title.
Using HTML to Create a Basic Web Page… By Josh Gallagan.
HTML Structure & syntax
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 2 Key Concepts 1 Copyright © Terry Felke-Morris.
All Web pages are written with some form of HTML (HyperText Markup Language). HTML documents are saved as Text Only files so virtually any computer can.
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 
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.
XP New Perspectives on The Internet, Sixth Edition— Comprehensive Tutorial 8 1 Creating Effective Web Pages Creating HTML Documents Tutorial 8.
Just Enough HTML How to Create Basic HTML Documents.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
Basic HTML PowerPoint How Hyper Text Markup Language Works.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Hypertext Mark-Up Language Web Page Creation HTML.
Lesson 2: Basic HTML Code Basic HTML Code. HTML is an acronym for Hypertext Markup Language. Internet browsers translate the HTML code into texts and.
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. Hypertext Markup Language Lesson Objectives 1. We will be able to understand the need for HTML and where it is used 2. We will be edit HTML to.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
McLean HIGHER COMPUTER NETWORKING Lesson 5 HTML Description of HTML web page Creating a simple HTML web page.
HTML file format  Lesson Objective: Understanding HTML and how it is used to create web pages.  Learning Outcome:  Create a HTML page by interpreting.
Web Design. How do web pages work? Webpages are written in a code called HTML. Programs like Internet Explorer read the code, and then show it as a web.
CS 111 – Oct. 4 Web design –HTML –Javascript Commitment: –This week, read sections 4.3 – 4.5.
HTML HyperText Markup Language ©Richard L. Goldman July 15, 2003.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
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.
HTML HyperText Markup Language. Text Files An array of bytes stored on disk Each element of the array is a text character A text editor is a user program.
Web programming Part 1: HTML 由 NordriDesign 提供
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.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
HTML cancho. HTML HyperText Markup Language A set of HTML tags.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place Programming language.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
HTML Structure & syntax
HTML Structure & syntax
Getting Started with HTML
Online PD Basic HTML The Magic Of Web Pages
Introduction to HTML.
HTML Basics.
Introduction to HTML:.
Internet Exploration: HTML Basics
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Elements of HTML Web Design – Sec 3-2
HTML GUIDE Press F5 and then
Uppingham Community College
Creating a Home Page in HTML
Basic HTML PowerPoint How Hyper Text Markup Language Works
S.Y.B.M.M. LECTURE SERIES - PART 2
Internet Exploration: HTML Basics
Elements of HTML Web Design – Sec 3-2
HTML Robert McIntosh
HTML Vocabulary.
COMPUTING FUNDAMENTALS
HTML.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Computers and Scientific Thinking David Reed, Creighton University
Web Design and Development
5.2.3 Be able to use HTML and CSS to construct web pages
Introduction to HTML5.
Chapter 16 The World Wide Web.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
HyperText Markup Language
HTML Structure & syntax
Presentation transcript:

WJEC GCSE Computer Science Unit 1 HTML

Objectives To be able to use the following HTML tags to create a simple webpage: HTML <html> Head <head> Title <title> Body <body> Headings <h1> - <h6> Paragraph <p> Italic <i> Bold <b> Underline <u> Centre align <center> Anchor <a href=”URL”> Unordered List <ul> List Item <li> Blockquote <blockquote> Horizontal Rule <hr> Image <img>

HTML HTML is an abbreviation of HyperText Markup Language and is one of the main programming languages used when creating web pages. HTML code consists of tags enclosed in angle brackets, < and >.

Why HTML is important as a standard for web page creation Web standards, such as HTML, are important as the development of web pages is simplified as web programmers will be able to understand another developer’s code. It is also important for the end users of web pages as following standards ensures that different web browsers are able to display web pages in the way in which they were intended.

HTML Tags HTML tags commonly come in pairs, such as <html> and </html> or <b> and </b>. The first tag in a pair is called the opening tag and the second tag is called the closing tag. Between these tags programmers can add text, more tags, comments and other types of text-based content.

HTML Tags The purpose of a web browser, such as Internet Explorer, Google Chrome and Safari is to read HTML code and render it on screen. The browser does not display the HTML tags, but instead uses the tags to interpret the content of the page.

HTML Tags The text between the <html> and </html> tags describes the web page. The text between <body> and </body> tags includes the contents of the web page.

HTML Tags

HTML Tags Other tags include the <p> tag, which can have a closing tag of </p>. This is the paragraph tag which starts a new paragraph. When an element within a web page is hyperlinked, it is placed within the <a href=”url”> and </a> tags. For example, <a href=”http://www.wjec.co.uk”>WJEC</a> will be displayed as WJEC.

Plain text  HTML

Workbook Complete section 5 Q7

HTML Task A draft design for an HTML web page is shown below. The design was then improved using various HTML tags to provide the formatting and content shown below. Global and Local Variables WA Global Variable can be changed anywhere in the program, a local variable can only be changed by the function it is inside! Good Revision Websites computing.smestow.org BBC Bitesize Teach-ict.com Copy the text from the electronic answer document into a basic text editor. Insert the HTML tags that would be needed to display the content and formatting shown in the improved design. The image file you require is called smestow.jpg The page title should be set to Global and Local Variables Save your new web page as finalRevision.txt