What you can see in the picture?

Slides:



Advertisements
Similar presentations
Intro to HTML. HTML HTML = HyperText Markup Language Used to define the content of a webpage HTML is made up of tags and attributes Content.
Advertisements

HTML popo.
HTML. The World Wide Web Protocols Addresses HTML.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
Web Page Development Identify elements of a Web Page Start Notepad
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
 2004 Prentice Hall, Inc. All rights reserved. Introduction to XHTML: Part 1.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
HTML (HyperText Markup Language)
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
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.
WEB DESIGN AND PROGRAMMING Introduction to XHTML.
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.
This shows CIS17 and the first day introduction..
HTML Introduction 2-1. Lecture 6 HTML - HyperText Markup Language  not a programming language  structure text into title, body, paragraphs, lists, links,
CPSC 203 Introduction to Computers Lab 23 By Jie Gao.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
Chapter 4 HTML Tags. HTML is written in something called tags. Tags come in pairs, an opening one and a closing one. The first pair of tags we'll write.
Week 1: Introduction to HTML and Web Design
Let’s Try It! Open Notepad
Tutorial 1 – Creating Web Pages With HTML
INTRO TO WEB DEVELOPMENT html
Introduction to HTML.
HTML Basics.
Introduction to HTML:.
HTML – The COMPUTING UNLOCKED GUIDE
Internet Exploration: HTML Basics
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
LAB Work 01 MBA 61062: E-Commerce
Marking Up with XHTML Tags describe how a web page should look
Introduction to basic HTML
Elements of HTML Web Design – Sec 3-2
Elements of HTML Web Design – Sec 3-2
Creating a Web Page.
HTML GUIDE Press F5 and then
CSCI-235 Micro-Computers in Science
Uppingham Community College
3.00cs HTML Overview 3.00cs Develop webpages.
Internet Exploration: HTML Basics
Elements of HTML Web Design – Sec 3-2
Chapter 4 - Introduction to XHTML: Part 1
HTML Robert McIntosh
COMPUTING FUNDAMENTALS
A guide to HTML.
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
3.02D HTML Overview 3.02 Develop webpages.
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Web Programming Language
Introduction to HTML- Basics
HTML Links.
HTML Structure.
Introduction to HTML.
Computer communications
HTML – The COMPUTING UNLOCKED GUIDE
Marking Up with XHTML Tags describe how a web page should look
HTML & CSS 7 Languages in 7 Days.
HyperText Markup Language
Marking Up with XHTML Tags describe how a web page should look
Johan Ng and Muhammad Hazzry
3.02D HTML Overview 3.02 Develop webpages.
WJEC GCSE Computer Science
Web Programming and Design
Lesson 3: Organizing your material
Marking Up with XHTML Tags describe how a web page should look
Presentation transcript:

What you can see in the picture?

Here

And here

Well Said! These are Web Pages

Web Pages are created using language

HTML is used to create Web Pages. English language is used to write books HTML is used to create Web Pages.

Actual content appears in webpage. It could be empty HTML Syntax HTML syntax: two-sided tag: <tag attributes>document content</tag> Closing tag Starting tag Properties of the tag. Optional! Actual content appears in webpage. It could be empty Examples: <p> CGS 2100 </p> <body bgcolor = “yellow”> UCF </body>

HTML Syntax HTML syntax: one-sided tag: <tag /> e.g. Breaking line tag: <br/> Horizontal line tag: <hr/>

Structure of the web page Starting with the tag <html>...</html> <html> ....... </html> Everything about the web page should be enclosed here

Structure of the web page Inside the <html></html> tag Each web page has a head part described in <head></head> tag: <html> <head> <title> CGS 2100 </title> </head> </html> The title of the web page should be put here

Structure of the web page Inside the <html></html> tag Each web page has a body part described in <body></body> tag: <html> <head> <title> CGS 2100 </title> </head> <body> This is a sample HTML file. </body> </html> The content of the whole web page should be put here

Title Body

Create a basic HTML file Open your text editor (notepad). Type the following lines of code into the document: <html> <head> <title> CGS2100 lab section</title> </head> <body> This is a sample HTML file. </body> </html>

Create a basic HTML file (cont) Save the file as sample.htm

sample.html

Introduction to some common tags Paragraph tag List tag Hyperlink tags

Paragraph tags <p>...</p> <html> <head> <title> CGS 2100 </title> </head> <body> <p> Here is the first paragraph. </p> <p> Here is the second paragraph. </p> </body> </html>

Space between paragraphs result First paragraph Space between paragraphs Second paragraph

List tags Ordered list: used to display information in a numeric order. The syntax for creating an ordered list is: <ol > e.g. <ol > <li>item1 </li> <li> Name: Riya Sen </li> <li>item2 </li> <li> Section: 12B </li> … <li> Instructor: Leela </li> </ol> </ol> Result: 1. Name: Riya Sen 2. Section: 1 2B 3 . Instructor: Leela

List tags Unordered list: list items are not listed in a particular order. The syntax is: <ul > e.g. <ul > <li>item1 </li> <li> Name: Riya Sen </li> <li>item2 </li> <li> Section: 12B </li> … <li> Instructor: Leela </li> </ul> </ul> Result: Name: Riya Sen Section: 1 2B Instructor: Leela

Hyperlink Link to another location or file Syntax: <a href= “http://www.google.com”> Click to open google </a> Starting Tag Attribute of the tag: the address of the hyperlink Content displayed on the page Ending tag

Link Link to web site Email link <a href= “http://www.google.com”> google</a> Email link <a href= “mailto:name@domain.com”> Link to email </a>

Include a Picture <img src=“FILENAME” /> <img src=“FILENAME” alt=“text” /> E.g. <img src=“logo.gif” alt=“Google logo” /> <img src=“logo.gif” />