HTML. The WWW is built of web pages, those pages are created with HyperText Markup Language (HTML) HTML is not a programming language but a markup (formatting)

Slides:



Advertisements
Similar presentations
Introduction to Web Design Lecture number:. Todays Aim: Introduction to Web-designing and how its done. Modelling websites in 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.
HTML Basics Customizing your site using the basics of HTML.
Chapter 3 – Web Design Tables & Page Layout
HTML popo.
Designing Websites Using HTML and FrontPage A Typical Webpage View Source A webpage is a text file containing instructions to tell a computer how the.
CREATED BY : VIRAL M.KORADIYA. Anchor elements are defined by the element. The element accepts several attributes, but either the Name or HREF attribute.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
HTML: HyperText Markup Language Hello World Welcome to the world!
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
Cascading Style Sheets. CSS stands for Cascading Style Sheets and is a simple styling language which allows attaching style to HTML elements. CSS is a.
Chapter 4 Marking Up With Html: A Hypertext Markup Language Primer.
Designing Websites Using HTML and FrontPage A Typical Webpage View Source A webpage is a text file containing instructions to tell a computer how the.
HTML and Web Page Design Presented by Frank H. Osborne, Ph. D. © 2005 ID 2950 Technology and the Young Child.
1 HTML Markup language – coded text is converted into formatted text by a web browser. Big chart on pg. 16—39. Tags usually come in pairs like – data Some.
Basic HTML. HTML Background November 1990, first created by Tim Berners Lee, the father/inventor of WWW Knighted by Queen Victoria in 2004 Hypertext is.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
Creating a Web Page HyperText Markup Language. HTML Documents  Created using any text editor  Notepad  Vi, Pico, or Emacs  If using word-processor,
4.01 Cascading Style Sheets
Web Design is a class created to nurture the minds of high school techies, and introduce those without prior knowledge to the field.
HTML Tags. Objectives Know the commonly used HTML tags Create a simple webpage using the HTML tags that will be discussed.
ULI101: XHTML Basics (Part III) Introduction to XHTML / Continued … Block-Level vs. Inline Elements (tags) Manipulating Text,  , Text Characteristics,,,,,,,,,,,,,,,
CS105 Introduction to Computer Concepts HTML
Chapter 4 Fluency with Information Technology L. Snyder Marking Up With HTML: A Hypertext Markup Language Primer.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Fluency with Information Technology Third Edition by Lawrence Snyder Chapter.
Web Design HTML, Frontpage, DreamWeaver μέρος β ΠΡΥ019 - Πληροφορική Δρ.Βάσος Βασιλείου.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
_______________________________________________________________________________________________________________ E-Commerce: Fundamentals and Applications1.
Chapter 2 HTML (Hypertext Markup Language) Part I.
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 Constantly evolving - extra facilities being added regularly Java applets and JavaScript used to increase functionality.
ITCS373: Internet Technology HTML
Learning HTML. HTML Attributes HTML elements can have attributes Attributes provide additional information about an element Class – specifies a class.
HTML (HyperText Markup Language)
Amber Annett David Bell October 13 th, What will happen What is this business about personal web pages? Designated location of your own web page.
Agenda Links External and Internet Links Anchor Tag Text Hyperlinks Image Hyperlinks Images Image Attributes: src, alt, width, height, align, border.
Chapter 4: Hypertext Markup Language Primer TECH Prof. Jeff Cheng.
 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.
CP2022 Multimedia Internet Communication1 HTML and Hypertext The workings of the web Lecture 7.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster
DHTML AND JAVASCRIPT Genetic Computer School LESSON 2 HTML TAGS G H E F.
1.NET Web Forms HTML Introduction © 2002 by Jerry Post.
 This presentation introduces the following: › 3 types of CSS › CSS syntax › CSS comments › CSS and color › The box model.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
G053 Lecture 12 Introduction To HTML Mr C Johnston ICT Teacher
CS105 INTRODUCTION TO COMPUTER CONCEPTS HTML Instructor: Cuong (Charlie) Pham.
HTML: Hyptertext Markup Language Doman’s Sections.
HTML tags Some popular ones. Paragraph: separated by a single line of white space Line break NOTE: no end tag is used for this tag Headlines ( through.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
LEARNING HTML PowerPoint #1 Cyrus Saadat, Webmaster.
HTML (Hyper Text Markup Language) Lecture II. Review Writing HTML files for web pages – efficient compact – fundamental. Text files with htm extension.
Introduction to HTML. _______________________________________________________________________________________________________________ 2 Outline Key issues.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Spiderman ©Marvel Comics Creating Web Pages (part 1)
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
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 is a markup.
REEM ALMOTIRI Information Technology Department Majmaah University.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
1 HTML. 2 Full forms WWW – world Wide Web HTTP – Hyper Text Transfer Protocol HTML – Hyper Text Markup Language.
1 Foundation of HTML Web Page Design. 2 Safe Web Fonts: Used by most computers regardless of environment or platform  Times New Roman  Arial  Courier.
Basic Web Publishing M. Scott Gartner 7/15/98.
HTML Intro.
Computers and Scientific Thinking David Reed, Creighton University
Introduction to HTML- Basics
Introduction to HTML.
Presentation transcript:

HTML

The WWW is built of web pages, those pages are created with HyperText Markup Language (HTML) HTML is not a programming language but a markup (formatting) language. You use HTML to mark up a text document, to indicate which format should be used when displaying the marked text If you want text to appear on the Web page in bold characters, mark it up like this: this text appears bold The turns on bold characters. The turns off bold characters (these tags don't actually appear on the screen)

Formatting + hyperlinking doesn’t give much power on its own.. Add-ons like Java and JavaScript, VBScript, CGI programming, cascading style sheets (CSS), ActiveX controls, Flash, PHP, etc. -Client-side -Server-side But, you can still get started in HTML page design by using nothing but a handful of basic HTML tags and a text editor No matter what other add-ons you use, the final presentation layer is normally coded in HTML

A Simple Sample HTML Document Welcome to the World of HTML HTML documents can be as simple as this Web page, which consists of just a single page of text and links, or as complex as a 10,000 page corporate intranet site replete with Java applets and CGI database access. Click HERE to reload this page!.html or.htm filename extension 2 main parts: head, body Written using a text editor, or through an authoring tool such as Dreamweaver – will see in lab!

Elements within the head element do the following: -Provide a title for the document -Provide description and keywords for automated search engines -Lay out the relationships between multiple documents -Provide a method for sending special messages to a specific browser General Officers of the US Army in the Civil War

Contains the actual content of the page The BODY tag itself also has several useful attributes  The BODY tag also has useful ways of interacting with JavaScript (see later)

Colours are defined in HTML using a hexadecimal coding system. The system is based upon the three components--Red, Green, and Blue Each of the components is assigned a hexadecimal value between 00 and FF (0 and 255 in decimal numbers). These three values are then concatenated into a single value that is preceded by a hash sign (#). Some standard colour names are also provided… -BLACK# GREEN# PURPLE# WHITE#FFFFFF

Line breaks (carriage returns) in the original HTML document are ignored by the viewer, which then reformats the text to fit the context. Multiple whitespace characters are also typically treated as a single space Therefore, use tags to explicity give line breaks: Extra spaces: And paragraphs: ….

Use the Heading container-tags.... etc. You can also specify fonts directly, e.g. Using style sheets is generally preferred to manually coding the same fonts throughout a website Creating an HTML Document Level 1 Heading Level 2 Heading Level 3 Heading Level 4 Heading Level 5 Heading Level 6 Heading

The tag draws a horizontal rule Manned Space Craft Manned Space Craft Soviet Vostok Voskhod Soyuz American Mercury Gemini Apollo Shuttle

The tag draws a horizontal rule Manned Space Craft Manned Space Craft Soviet Vostok Voskhod Soyuz American Mercury Gemini Apollo Shuttle

This is in bold text. This is in italic text. This is in teletype text. This text is underlined. This is a strikethough example. This is big text. This is small text. This is a subscript. This is a superscript.

This tag displays images Compressed file formats: -GIF: lossless, limited to 256 colours, simple transparency -JPG: lossy, plenty of colours, no transparency -PNG: lossless, plenty of colours, alpha transparency Use the SRC attribute to specify the filename as a relative or absolute URL

Relative web addresses identify another web-page (or web resource) relative to the current one: “page2.html” “foldername/page3.html” Absolute web addresses identify another web resource using a globally-unique address: “

Using the IMG tag's ALIGN attribute This text is aligned with the top of the image. This text is aligned with the middle of the image. This text is aligned with the bottom of the image.

An tag can also take these attribute values, to perform text wrapping: ALIGN = LEFT ALIGN = RIGHT

WIDTH, HEIGHT Size to display image at (pixels) ALT Alternative text to show in place of image BORDER Width of border added around image (pixels) VSPACE, HSPACE Add additional white space (pixels) around the image

A hyperlink consists of: - An anchor (image or text) - A reference (URL) to link to. This can be relative or absolute Vogon Earth Reconnaissance Office There is also a special mailto: link: Send me

Ordered List Example Red Orange Yellow Green Blue Indigo Violet

Ordered List Example Red Orange Yellow Green Blue Indigo Violet

Manual List Example Red Orange Yellow Green Blue Indigo Violet

Manual List Example Red Orange Yellow Green Blue Indigo Violet

Originally intended for displaying organised content Commonly used now as a predictable (platform independent) way of formatting entire webpages The element is the container for the table's data and layout. HTML tables are composed row by row: you indicate a new row with the tag You separate the data with either the (table data) tags. These define the actual cells of data!

Colours Of The Rainbow Red Orange Yellow Green Blue Violet

Row and Column Spanning DC nationals Offense Defense Goalie Husmann O'Donnell Weinberg Popplewell