Hyper text markup Language

Slides:



Advertisements
Similar presentations
Teppo Räisänen LIIKE/OAMK 2010
Advertisements

How Tags are used to form your Web Page
Introduction to HTML CPS470 Software Engineering Fall 1998.
HTML: PART ONE. Creating an HTML Document  It is a good idea to plan out a web page before you start coding  Draw a planning sketch or create a sample.
HTML Notes Chapters 1--6 Codes used in creating HTML documents are called tags. Tags are always enclosed in left ( ) angle brackets. Tags can be upper.
Basics of HTML Shashanka Rao. Learning Objectives 1. HTML Overview 2. Head, Body, Title and Meta Elements 3.Heading, Paragraph Elements and Special Characters.
Creating a Simple Page: HTML Overview
Basic HTML Hyper text markup Language. Lesson Overview  In this lesson, you will learn to:  Create Lists  Horizontal rule (line)  Create a page for.
HTML Overview Part 2 – Paragraphs, Headings, and Lines 1.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
Basic HTML Hyper text markup Language. Re-cap  … - The tag tells the browser that this is an HTML document The html element is the outermost element.
HTML Tags Basic Tags Doctype or HTML Head Title Body Use the website to find the definitions
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.
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.
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.
HTML,DHTML & Javascript/Session1/1 of 39 Introduction and Basic Tags Session 1 of Using HTML, DHTML & JavaScript.
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,
Ordered Lists By Brian Christian. Ordered List Tags You use this tag when you want to start an ordered list. Each list item you write need to start with.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
Basic HTML Hyper text markup Language. Lesson Overview  In this lesson, you will learn to:  Write HTML code using a text editor application such as.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
McLean HIGHER COMPUTER NETWORKING Lesson 5 HTML Description of HTML web page Creating a simple HTML web page.
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 Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Basic HTML Programming Technology Education Ellsworth Community Middle School Communication Systems.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
Lists Module 2: XHTML Basics LESSON 8. Module 2: XHTML Basics LESSON 8 Lesson Overview In this lesson, you will learn to:  Create lists using XHTML code.
1 Your Web Page title body of Web page main heading H2 heading bulleted list paragraph.
Project 02 Creating and Editing a Web Page Concept Map of Unit Creating and Editing a Web Page Key Learning Understand the elements to create a web page.
HTML AN INTRODUCTION TO WEB PAGE PROGRAMMING. INTRODUCTION TO HTML With HTML you can create your own Web site. HTML stands for Hyper Text Markup Language.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
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.
Introduction to Programming
INTRO TO WEB DEVELOPMENT html
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
Internet Exploration: HTML Basics
Web Development Part 1.
LAB Work 01 MBA 61062: E-Commerce
Transcriptions Studio Workshop Fall 2006
Introduction to basic HTML
Computer Fundamentals 2
Elements of HTML Web Design – Sec 3-2
Elements of HTML Web Design – Sec 3-2
Introduction to the Internet
Enhancing Your Web Site
HTML Formatting.
HTML Lesson 2.
Text Elements.
Chapter 6 Lists.
Hyper text markup Language
Internet Exploration: HTML Basics
Elements of HTML Web Design – Sec 3-2
Elements and Attributes
Web Programming– UFCFB Lecture 5
HTML (HyperText Markup Language)
Essentials of HTML.
Text Elements.
Essentials of HTML.
LESSON 8 Module 2: XHTML Basics Lists.
Text Elements.
Introduction to HTML.
LESSON 1 Module 2: XHTML Basics Basic XHTML.
LESSON 8 Module 2: XHTML Basics Lists.
Creating and Editing a Web Page
Text Elements.
WJEC GCSE Computer Science
Text Elements.
Hyper text markup Language
Presentation transcript:

Hyper text markup Language Basic HTML Hyper text markup Language

Re-cap Code hygiene Attention to detail!!!!!! Save as HTML Correct alignment of code. makes code easy to understand Makes Debugging easier

Lesson Overview In this lesson, you will learn to: Create Lists Horizontal rule (line) Create a page for a recipe http://commons.wikimedia.org/wiki/Main_Page

Types of Lists Three types of lists which will be covered in this lesson: Unordered lists Ordered lists Definition lists Lists may not look like what you’re used to.

example of unordered lists

Class assignment 9 Unordered Lists

Create a new file it in Web Design, name it after your recipe Create a new file it in Web Design, name it after your recipe. For example,“PeanutButterSandwich.html” Add an HTML, header, title, and body tag to your page Get a list of ingredients for your recipe.

Unordered lists <ul> <li>two slices of bread.</li> <li>jar of peanut butter.</li> <li>jar of jelly.</li> </ul>

Ordered lists <ol> <li>Get a slice of bread.</li> <li>Open a jar of peanut butter.</li> <li>Spread peanut butter</li> <li>Get the second slice of bread.</li> <li>Open a jar of jelly.</li> <li>Spread jelly</li> <li>Put the two slices together</li> <li>Eat the sandwich.</li> </ol>

Ordered HTML Lists - The Type Attribute Ordered list cont… Ordered HTML Lists - The Type Attribute A type attribute can be added to an ordered list, to define the type of the marker: Type Description type="1" The list items will be numbered with numbers (default) type="A" The list items will be numbered with uppercase letters type="a" The list items will be numbered with lowercase letters type="I" The list items will be numbered with uppercase roman numbers type="i" The list items will be numbered with lowercase roman numbers Numbers: <ol type="1">   <li>Coffee</li>   <li>Tea</li>   <li>Milk</li> </ol> Uppercase Letters: <ol type="A">   <li>Coffee</li>   <li>Tea</li>   <li>Milk</li> </ol> Lowercase Letters: <ol type="a">   <li>Coffee</li>   <li>Tea</li>   <li>Milk</li> </ol>

Class assignment 10 Definition Lists

Definition Lists <dl>….</dl> defines the definition list <dt>….</dt> defines an item in definition list <dd>…</dd> describes the item in the list

Definition List Sample

Class assignment 11 Lists

In your recipe add definitions for the ingredients that your food takes Example:

Class assignment 12 Horizontal Rule

Horizontal rule <h1>Sample header</h1> <hr > Used to create divide space on the page

Horizontal rule Use the horizontal rule to break up the sections in your recipe

Class assignment 13 Adding in Comments

Adding comments to your code <html> <head> <!-– Comments not shown on page--> <title>Tags and Attributes</title> </head> <body> <!–- This section has headers--> <h1>This creates large text</h1> <h6>This is the smallest</h6> </body> </html>

Comments help others and yourself Used to remind you what you were thinking when you wrote that code Helps someone who is reading your code understand what you were thinking

Tell yourself what you learned Use comments to describe the element we learned about today