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.

Slides:



Advertisements
Similar presentations
Farhan Nisar University of Peshawar
Advertisements

Introduction to HTML
Table, List, Blocks, Inline Style
HTML popo.
Introduction to HTML & CSS
HyperText Markup Language (HTML). Introduction to HTML Hyper Text Markup Language HTML Example The structure of an HTML document Agenda.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
HTML: HyperText Markup Language Hello World Welcome to the world!
Learning HTML Internet and Web Application Development SWE 444 Dr. Ahmed Youssef.
Hyper Text Markup Language.  HTML is a language for describing web pages.  HTML stands for Hyper Text Markup Language  HTML is not a programming language,
WeB application development
Website Design.
Presenter: James Huang Date: Sept. 26,  Introduction  Basics  Lists  Links  Forms  CSS 2.
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
HTML – A Brief introduction Title of page This is my first homepage. This text is bold  The first tag in your HTML document is. This tag tells your browser.
Images, Tables, lists, blocks, layout, forms, iframes
MR.Mohammed Sharaf al Shareef
Made by: Dan Ye. Introduction Basic Last Page ☆ HTML stands for Hyper Text Markup Language; ☆ HTML is not a programming language, it is a markup language;
HTML BASIC
HTML 2. What is an HTML File? HTML stands for Hyper Text Markup Language An HTML file must have an htm or html file extension  With newer software it.
WEB DESIGN 1 THEORY : 30 PRACTICE : 60 Lecturer : Phạm Sĩ Quan Phone : Blog:
Computer Sciences Department
HTML Tags. Objectives Know the commonly used HTML tags Create a simple webpage using the HTML tags that will be discussed.
Review HTML  What is HTML?  HTML is a language for describing web pages.  HTML stands for Hyper Text Markup Language  HTML is not a programming language,
Module 5 HTML: An Introduction. ●A language to describe and create web pages. ●Stands for: Hyper Text Markup Language What is HTML?
HTML Web Programming.
Chapter 2: The Client Side: HTML CIS 275—Web Application Development for Business I.
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.
MORE HTML REMEMBER TO SEARCH W3 SCHOOLS FOR MORE INFO.
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 is.
Ku-Yaw Chang Assistant Professor, Department of Computer Science and Information Engineering Da-Yeh University.
Headings, Paragraphs, Formatting, Links, Head, CSS, Images
DAT602 Database Application Development Lecture 14 HTML.
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.
HTML INTRODUCTION, EDITORS, BASIC, ELEMENTS, ATTRIBUTES.
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.
1 HTML محمد احمدی نیا 2 Of 43 What is HTML?  HTML stands for Hyper Text Markup Language  HTML is not a programming language, it.
CHAPTER 1 HTML & HTML5 I อ. ยืนยง กันทะเนตร คณะเทคโนโลยีสารสนเทศและการสื่อสาร มหาวิทยาลัยพะเยา 1.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
Introduction to HTML. What is HTML? Hyper Text Markup Language (HTML) is a language for describing web pages. HTML is not a programming language, it is.
Web Design and Development for Business Lecture 3 Hyper Text Markup Language (HTML)
HTML: Hyptertext Markup Language Doman’s Sections.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
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 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 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 1BFCET BATHINDA. Definitions Web server: a system on the internet containing one or more web site Web site: a collection.
CSE 409 – Advanced Internet Technology 1 DISCUSSION OF BASIC HTML TAGS.
COMP303 - Internet Based Programming
Introduction 1 Basics syntax, tags of HTML 2 Lists 3 Tables 4 Div 5 HTML Forms 6.
HTML HYPER TEXT MARKUP LANGUAGE. INTRODUCTION Normal text” surrounded by bracketed tags that tell browsers how to display web pages Pages end with “.htm”
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
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
HTML cancho. HTML HyperText Markup Language A set of HTML tags.
HTML Tutorial. What is HTML HTML is a markup language for describing web documents (web pages) HTML documents are described by HTML tags Each HTML tag.
objectives Learning WEB TECHNOLOGIES. Understanding Salient features of WEB TECHNOLOGIES. Designing of WEB PAGES on your own. Development of WEB APPLICATIONS.
HTML Paragraphs Paragraphs are defined with the tag. Example This is a paragraph This is another paragraph.
CITE303 - Internet Based Programming Lecture notes: Week 1 Instructor:Dr. Tolgay KARANFİLLER.
HTML for web designing short course. What is an HTML File? HTML stands for Hyper Text Markup Language An HTML file must have an htm or html file extension.
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.
HTML Tables Tables are defined with the tag. A table is divided into rows (with the tag), and each row is divided into data cells (with the tag). td stands.
Week-11 (Lecture-1) Introduction to HTML programming: A web based markup language for web. Ex.
Introduction to Programming
WEBSITE DESIGN Chp 1
Html.
Presentation transcript:

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 is not a programming language, it is a markup language A markup language is a set of markup tags HTML uses markup tags to describe web pages HTML Tags HTML markup tags are usually called HTML tags HTML tags are keywords surrounded by angle brackets like HTML tags normally come in pairs like and The first tag in a pair is the start tag, the second tag is the end tag Start and end tags are also called opening tags and closing tags ACM 262 Course Notes

Web Pages HTML Documents = Web Pages HTML documents describe web pages HTML documents contain HTML tags and plain text HTML documents are also called web pages The purpose of a web browser (like Internet Explorer or Firefox) is to read HTML documents and display them as web pages. The browser does not display the HTML tags, but uses the tags to interpret the content of the page. ACM 262 Course Notes

HTML Introduction ACM 262 Course Notes My First Heading My first paragraph.

HTML Basic HTML Headings HTML headings are defined with the to tags. This is a heading This is a heading This is a heading ACM 262 Course Notes

HTML Basic ACM 262 Course Notes HTML Paragraphs HTML paragraphs are defined with the tag. This is a paragraph. This is another paragraph. HTML Links This is a link HTML Images

HTML Basic ACM 262 Course Notes Prepare this page in Notepad, the picture will act as a link.

HTML Elements HTML Element Syntax An HTML element starts with a start tag / opening tag An HTML element ends with an end tag / closing tag The element content is everything between the start and the end tag Some HTML elements have empty content Empty elements are closed in the start tag Most HTML elements can have attributes This is my first paragraph. ACM 262 Course Notes

HTML Attributes HTML elements can have attributes Attributes provide additional information about an element Attributes are always specified in the start tag Attributes come in name/value pairs like: name="value“ This is a link ACM 262 Course Notes

HTML Headings ACM 262 Course Notes HTML Lines The tag creates a horizontal line in an HTML page. This is a paragraph This is a paragraph This is a paragraph HTML Comments Comments can be inserted into the HTML code to make it more readable and understandable.

HTML Headings ACM 262 Course Notes

HTML Paragraphs ACM 262 Course Notes HTML Line Breaks Use the tag if you want a line break (a new line) without starting a new paragraph. This is a para graph with line breaks or In XHTML, XML, elements with no end tag (closing tag) are not allowed. Even if works in all browsers, writing instead works better in XHTML and XML applications.

HTML Formatting ACM 262 Course Notes

HTML Formatting This text is bold This text is strong This text is big This text is italic This text is emphasized This is computer output This is subscript and superscript ACM 262 Course Notes

HTML Fonts This paragraph is in Arial, size 5, and in red text color. This paragraph is in Verdana, size 3, and in blue text color. ACM 262 Course Notes

HTML Styles ACM 262 Course Notes Styling HTML with CSS CSS was introduced together with HTML 4, to provide a better way to style HTML elements. CSS can be added to HTML in the following ways:  in separate style sheet files (CSS files)  in the style element in the HTML head section  in the style attribute in single HTML elements

HTML Styles ACM 262 Course Notes HTML Style Example - Background Color This is a heading This is a paragraph.

HTML Styles ACM 262 Course Notes HTML Style Example - Font, Color and Size A heading A paragraph.

HTML Styles ACM 262 Course Notes HTML Style Example - Text Alignment Center-aligned heading This is a paragraph.

HTML Links HTML Links - The target Attribute Visit W3Schools! HTML Links - The name Attribute The name attribute specifies the name of an anchor. The name attribute is used to create a bookmark inside an HTML document. Useful Tips Section Visit the Useful Tips Section DO IT YOURSELF ACM 262 Course Notes

HTML Images Norwegian Mountain Trip ACM 262 Course Notes DO IT YOURSELF

HTML Tables row 1, cell 1 row 1, cell 2 row 2, cell 1 row 2, cell 2 </table ACM 262 Course Notes

HTML Tables Header 1 Header 2 row 1, cell 1 row 1, cell 2 row 2, cell 1 row 2, cell 2 ACM 262 Course Notes

HTML Tables ACM 262 Course Notes

HTML Tables ACM 262 Course Notes

HTML Lists HTML Unordered Lists An unordered list starts with the tag. Each list item starts with the tag. Coffee Milk HTML Ordered Lists An ordered list starts with the tag. Each list item starts with the tag. Coffee Milk ACM 262 Course Notes

HTML Lists HTML Definition Lists A definition list is a list of items, with a description of each item. The tag defines a definition list. The tag is used in conjunction with (defines the item in the list) and (describes the item in the list) Coffee - black hot drink Milk - white cold drink ACM 262 Course Notes

HTML Forms ACM 262 Course Notes HTML Forms - The Input Element First name: Last name: Password Field Password:

HTML Forms ACM 262 Course Notes Radio Buttons Male Female Checkboxes I have a bike I have a car

HTML Forms Dropdown Lists Volvo Saab Fiat Audi ACM 262 Course Notes DO IT YOURSELF

HTML Forms ACM 262 Course Notes DO IT YOURSELF