Web Design and Development

Slides:



Advertisements
Similar presentations
Introduction to HTML
Advertisements

HTML Basics Customizing your site using the basics of HTML.
HTML popo.
HyperText Markup Language (HTML). Introduction to HTML Hyper Text Markup Language HTML Example The structure of an HTML document Agenda.
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.
Tags through Forms. This element is required for all HTML pages It must be at the top of every page of every website We’ll see later on why it is important.
Computer Science 101 HTML. World Wide Web Invented by Tim Berners-Lee at CERN, the European Laboratory for Particle Physics in Geneva, Switzerland (roughly.
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.
HTML HTML stands for "Hyper Text Mark-up Language“. Technically, HTML is not a programming language, but rather a markup language. Used to create web pages.
HTML (HyperText Markup Language)
Chapter 4 (through page 110) Fluency with Information Technology 4 th edition by Lawrence Snyder (slides by Deborah Woodall : 1.
Explorers Guild April 27, What is HTML? Hypertext Markup Language (HTML) is the basic building block of the World Wide Web page. HTML files are.
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
Web Programming Basics of HTML. HTML stands for Hyper Text Mark-up Language A mark-up language is different than those that you have learned before in.
HTML Hyper Text Markup Language. What is an HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup.
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.
Creating Webpage Using HTML
HTML Codes Miss B.
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,
Lesson 7 – World Wide Web. What is the World Wide Web?  The content of the worldwide web is held on individual web pages gathered together to form websites.
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.
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.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
DIGITAL DESIGN Digital Design is the art and process of creating a single Web page or entire Web sites and may involve both the aesthetics and the mechanics.
HTML World Wide Web Consortium What does HTML stand for? – – –
Behind every site is a mix of special languages that your web browser understands The main way of describing any website is HTML HTML stands for Hyper.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
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.
1 HTML. 2 Full forms WWW – world Wide Web HTTP – Hyper Text Transfer Protocol HTML – Hyper Text Markup Language.
HTML 17 HTML 17. HTML 17 HTML is the language for making webpages Hypertext Markup Language You need to know the basics Questions about HTML are common.
Introduction to HTML (Web Design) IT Fundamentals.
Q.Nand1 HTML Creating an HTML Document Lesson 2. Q.Nand2 Overview Creating an HTML Document: –HTML syntax –Creating Basic Tags –Displaying Your HTML Files.
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.
Basic concepts of web design
Online PD Basic HTML The Magic Of Web Pages
Web Basics: HTML/CSS/JavaScript What are they?
Introduction to HTML:.
Internet Exploration: HTML Basics
Introduction to basic HTML
Elements of HTML Web Design – Sec 3-2
Elements of HTML Web Design – Sec 3-2
HTML GUIDE Press F5 and then
HTML5 – Heading, Paragraph
Uppingham Community College
Intro to HTML Mr. Singh.
Creating a Home Page in HTML
Basic HTML PowerPoint How Hyper Text Markup Language Works
INSTRUCTIONS This presentation was designed to first be viewed in class with the instructor. Students may then view it on their workstations while trying.
Today’s topics Networks & the Internet Basic HTML
HTML Formatting.
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
Internet Exploration: HTML Basics
Elements of HTML Web Design – Sec 3-2
<start>middle</end> Version 1.1
HTML.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Chapter 16 The World Wide Web.
HTML Structure.
Computer communications
HyperText Markup Language
The Most Basic HTML Page
The language of the internet
Johan Ng and Muhammad Hazzry
The language of the internet
CAII 4.01 Web Page Design Terms List 2.
Lesson 2: HTML5 Coding.
WJEC GCSE Computer Science
HTTP and HTML HTML HTTP HTTP – Standardize the packaging
Presentation transcript:

Web Design and Development Implementation – HTML part 1

Learning Intention I will learn what a web page and web site are and how web pages are created using HTML.

What is the world wide web? A collection of multimedia information held on the internet Information is stored on websites that often contain many web pages Websites are stored on web servers that are connected to the internet

What is the world wide web? Web page Web site = a single document or page = an effective way to split up information across multiple web pages Each website has a Home page (or index page) that is a starting point to explore the website

HTML HTML stands for Hyper Text Markup Language and is the main language used to create webpages In HTML you use tags to construct and format the webpage, for example <b> Mr Ross </b> would put Mr Ross in bold

Tag Structure Opening tag: <tag> Closing tag: </tag> Some are all in one: <tag attributes/> Tag inside a tag (nested tags): <tag1><tag2>Some Text</tag2></tag1>

Tags for Page Structure Open Tag Close Tag What the Tag does <html> </html> Start and end of HTML file <head> </head> Start and end of the heading section <body> </body> Start and end of the content of the page <title> </title> Page title – shown in browser bar – goes inside head

Tags for Text Open Tag Close Tag What the Tag does <hX> Headings numbered 1-6. 1 largest, 6 smallest. e.g. <h2> <p> </p> Displays text in a paragraph

Basic web page structure Opening and closing html tags – everything else goes inbetween Tells web browser the page is HTML based Page title goes inside the head Body contains the contents of the web page

Basic web page structure

Tags for Lists Open Tag Close Tag What the Tag does <ol> Ordered list (i.e. numbered list) <ul> </ul> Unordered list (i.e. bullet point list) <li> </li> An item in a list

Lists <ol> <li>First item</li> <li>Second item</li> </ol> First item Second item

Lists <ul> <li>First item</li> <li>Second item</li> </ul> First item Second item

Puts text in the middle of the page. Formatting Tags Open Tag Close Tag What the Tag does <b> </b> Makes text bold <strong> </strong> " " " <u> </u> Underlines text <i> </i> Makes text italic <em> </em> " " " <center> </center> Puts text in the middle of the page. Note: These are not examined

Success Criteria I can edit HTML to make a webpage all about me.