HyperText Markup Language (HTML). Introduction to HTML Hyper Text Markup Language HTML Example The structure of an HTML document Agenda.

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

Farhan Nisar University of Peshawar
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 popo.
HTML: HyperText Markup Language Hello World Welcome to the world!
WeB application development
Presenter: James Huang Date: Sept. 26,  Introduction  Basics  Lists  Links  Forms  CSS 2.
How Tags are used to form your Web Page
Images, Tables, lists, blocks, layout, forms, iframes
MR.Mohammed Sharaf al Shareef
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
Introduction to HTML 2006 INT197B. What is the Internet? Global network of computers that are connected and communicate via a series of Protocols Protocols.
Computer Science 103 Chapter 2 HyperText Markup Language (HTML)
Chapter 2 Introduction to HTML5 Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Week 1 8/10/2015iSTTS, Agenda Introduction to HTML Creating and publishing a Web page Validating a document Main HTML elements Block-level HTML.
Chapter 14 Introduction to HTML
HTML Tags. Objectives Know the commonly used HTML tags Create a simple webpage using the HTML tags that will be discussed.
Basics of HTML Shashanka Rao. Learning Objectives 1. HTML Overview 2. Head, Body, Title and Meta Elements 3.Heading, Paragraph Elements and Special Characters.
Computer Science 101 HTML. World Wide Web Invented by Tim Berners-Lee at CERN, the European Laboratory for Particle Physics in Geneva, Switzerland (roughly.
CS105 Introduction to Computer Concepts HTML
Presenting Information on WWW using HTML. Presenting Information on the Web with HTML How Web sites are organized and implemented A brief introduction.
HTML. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language.
Chapter 2 HTML (Hypertext Markup Language) Part I.
Chapter 16 The World Wide Web Chapter Goals ( ) Compare and contrast the Internet and the World Wide Web Describe general Web processing.
HTML basics exercises.
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.
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
 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.
1 HTML محمد احمدی نیا 2 Of 43 What is HTML?  HTML stands for Hyper Text Markup Language  HTML is not a programming language, it.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
What is Markup and Markup Languages? What is HTML? A Basic HTML Document Basic HTML Tags Tag Attributes and Text Formatting Tags Insert Hyperlinks Add.
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,
CS105 INTRODUCTION TO COMPUTER CONCEPTS HTML Instructor: Cuong (Charlie) Pham.
1 John Magee 9 November 2012 CS120 Lecture 17: The World Wide Web and HTML Web Publishing.
Web Design and Development for Business Lecture 3 Hyper Text Markup Language (HTML)
HTML: Hyptertext Markup Language Doman’s Sections.
Introduction HTML (Hypertext Markup Language) is used to create document on the World Wide Web. HTML is not a programming language, it is a markup language.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
HTML.
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(Hyper Text Markup Language) ByNaveen. Introduction HTML or Hyper Text Markup Language is the standard markup language Its used to create the web.
CSE 409 – Advanced Internet Technology 1 DISCUSSION OF BASIC HTML TAGS.
HTML (Hyper Text Markup Language) Lecture II. Review Writing HTML files for web pages – efficient compact – fundamental. Text files with htm extension.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Basic HTML. So, what exactly is HTML? HTML stands for: HTML stands for: Hypertext Markup Language. It is a purpose built markup language for the delivery.
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 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.
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
1999, COMPUTER SCIENCE, BUU Introduction to HTML Seree Chinodom
INT222 – Internet Fundamentals
1 HTML. 2 Full forms WWW – world Wide Web HTTP – Hyper Text Transfer Protocol HTML – Hyper Text Markup Language.
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.
1 Introduction to HTML. 2 Definitions  W W W – World Wide Web.  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web.
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.
Marking Up with XHTML Tags describe how a web page should look
COMPUTING FUNDAMENTALS
Computers and Scientific Thinking David Reed, Creighton University
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Chapter 16 The World Wide Web.
Introduction to HTML.
Marking Up with XHTML Tags describe how a web page should look
Pertemuan 1 Desain web Pertemuan 1
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Presentation transcript:

HyperText Markup Language (HTML)

Introduction to HTML Hyper Text Markup Language HTML Example The structure of an HTML document Agenda

Introduction to HTML The World wide web -The set of computers on internet that supports HTTP Web Server The special software that allows the website management Accepts client request for information Responds to the client request by providing the page with the required information Web Client A special software also known as browser that allows Connecting to the appropriate server Query the server for the information to be read Provide the interface to read the information returned by the server HTTP -The Hypertext Transfer Protocol The language used by the www client(eg. Netscape, Internet Explore, Firefox etc.) to request the documents from the www server(i.e. program running at the websites)

Hyper Text Markup Language Text Mixed with markup tags - Tags enclosed in angled brackets ( Heading ) The language interpreted by the browser Web Pages are also know as the HTML documents What does markup describe -Appearance -Layout -Content

HTML Example WebMail Please enter your user information Username: Password:

The structure of an HTML document DOCTYPE Document Head Document Body Titles and Footers Text Formatting Line Breaks Text Styles

DOCTYPE Doctype declaration is the very first thing in the HTML document before tag. This tag tells the browser which HTML or XHTML specification the document uses example-

Document Head Information placed in this section is essential for the inner working of the document and has nothing to do with the content of the document With the exception of the information placed in the,all other information will not be visible in the tags is not dispalyed in the browser. example First app ….

Document Body The tags used to indicate the start and end of the main body of the textual information …… page default like background color, text color, font size and font weight can be specified as the attribute of the tag

Titles and Footers Title -Describes what page is all about without being too wordy -The text included in the shows up in the title bar of the browser window ….The Message …. Footer -Information commonly placed in the foot of the webpage. Generally hold copyright information, contact details of the creator of the webpage and so on. the text Example This is the title This is the footer

Text Formatting The blank line always separate paragraphs in textual information. The tag that provide this functionality is. Example First app firest paragraph this is tha sample text this is the second paragraph...this is the sample text

Line Breaks Use when the text need to be started from the new line and not from the same line the tag is used. Example First app firest paragraph this is tha sample text this is the second paragraph...this is the sample text

Text Styles Bold Displays the text in the BOLDFACE style. The tag used are …. Italics Displays text in ITALICS. The tags used in this case are ….. Underline Displays the text as underlined. The tags used in this case are … Example First app firest paragraph this is tha sample text this is the second paragraph...this is the sample text third linr...underlined

Lists Types of list -Unordered List -Ordered List Each list item starts with Type -Specifies the type of bullet Type=fillround gives solid round black bullet Type=square gives solid square black bullet Type=“1” will give counting numbers (1,2…) Type=“A” will give uppercase letters (A,B…) Type=“a” will give lowercase letters (a,b….) Type=“I” will give uppercase Roman Numbers (I,II,III….) Type=“I” will give lowercase Roman Numbers (I,II,III….) Start used to alter the numbering sequence.

OL Ordered (Numbered) List & Unordered List Element Example - First Element Second Element Third Element Attributes –type, Start, value List Entries: LI … End Tag Optional Element Example - First Element Second Element Third Element

Definition List Is not list of items List of terms and explanation of terms Example Coffee Black hot drink Milk White cold drink OUTPUT Definition list starts with tag Definition list term starts with tag Definition list definition starts with tag

Displaying Images Images are defined with tag tag is empty src stands for source url points to the location where image is stored alt attributes are used to define alternate text for the image

Table Defined with tag table is divided into rows (with the tag>) and each row is divided into data cells( with tags. Td stands for table data. Example Table Attributes border cellspacing cellpadding etc First row first cell First row second cell Second row first cell Second row second cell

HTML Links Uses (anchor) tag and href attribute to link to the another elements Can point to any resource on the web Example India Development Gateway Target Attribute defines where the link will be opened India Development Gateway “ Here target=“_blank” specifies that document will open in new window

Anchor Tag and name Attribute Name attribute is used to create named anchor used to jump to specific location in the webpage Example go to anchor1

HTML frames Use to display more than one HTML document in the same browser window Uses tag defines how to divide window into frames

Thank You……………