Prepared by Dr. Maher Abuhamdeh 2014/2015 First semester

Slides:



Advertisements
Similar presentations
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,
Advertisements

WeB application development
Website Design.
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 1.
Basics of HTML What is HTML?  HTML or Hyper Text Markup Language is the standard markup language used to create Web pages.  HTML is.
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;
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
 XHTML is aimed to replace HTML  XHTML is almost identical to HTML 4.01  XHTML is a stricter and cleaner version of HTML  XHTML is HTML defined as.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
HTML Structure & syntax
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
Essential Tags Web Design – Sec 3-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course materials.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 2 Key Concepts 1 Copyright © Terry Felke-Morris.
Styling and theming Build campaigns in style. What we'll look at... How a web document is structured How HTML and CSS fit together Tools you will need.
All Web pages are written with some form of HTML (HyperText Markup Language). HTML documents are saved as Text Only files so virtually any computer can.
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.
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.
Basic HTML PowerPoint How Hyper Text Markup Language Works
HTML Codes Miss B.
XHTML and CSS Session 1 Intro, (X)HTML, CSS, W3C, browsers, webpage, structure, tags, attributes, elements, web development process, basic XHTML elements.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
Lecture: Web Design Assis. Prof. Freshta Hanif Ehsan Faculty of Computer Science Kabul Polytechnic University Spring Semester
Web Design. How do web pages work? Webpages are written in a code called HTML. Programs like Internet Explorer read the code, and then show it as a web.
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.
Introduction to HTML Year 8. What is HTML O Hyper Text Mark-up Language O The language that all the elements of a web page are written in. O It describes.
HTML Basic Structure. Page Title My First Heading My first paragraph.
Hyper Text Markup Language.  My First Heading My first paragraph. Example Explained The DOCTYPE declaration defines the document type The text between.
Prepared by Sana Maqbool. Objectives After completing this lesson, the you will be able to… Understand about web authoring Name and explain the uses of.
Prepared by Sana Maqbool. Objectives After completing this lesson, the you will be able to… Understand about web authoring Name and explain the uses of.
HTML Structure & syntax
HTML Structure & syntax
Basic HTML Introduction to HTML.
Pertemuan 1 Desain web Pertemuan 1
Fall 2016 CSULA Saloni Chacha
Introduction and HTML overview
Intro to HTML CS 1150 Spring 2017.
Html.
Web Basics: HTML/CSS/JavaScript What are they?
HTML basics
Web Development Part 1.
BHS Web Design Mr. Campbell
Intro to HTML CS 1150 Fall 2016.
Transcriptions Studio Workshop Fall 2006
Mansoor Ahmed Bughio.
HTML Lab 5 10/1/2015.
HTML.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Introduction to Web programming
Creating a webpage html coding
HTML Robert McIntosh
Basic HTML PowerPoint How Hyper Text Markup Language Works
Introduction to Web Page Design
Basic HTML and Embed Codes
HTML 12/27/2018.
Introduction to HTML5.
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
Introduction to HTML.
HTML Basic Structure.
HTML Structure.
HTML What is Html? HTML stands for Hypertext Markup Language.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Web Application Development
Pertemuan 1 Desain web Pertemuan 1
HTML Structure & syntax
Creating your website and learning HTML
Web Programming and Design
HTML Introduction.
Presentation transcript:

Prepared by Dr. Maher Abuhamdeh 2014/2015 First semester Web Design 2 Using PHP Prepared by Dr. Maher Abuhamdeh 2014/2015 First semester

Course overview Course Outline Instructions Overview Of HTML

What is HTML? HTML is a markup language for describing web documents (web pages). HTML stands for Hyper Text Markup Language A markup language is a set of markup tags HTML documents are described by HTML tags Each HTML tag describes different document content.

A web Browser A web browser can read HTML files and compose them into visible or audible web pages. The browser does not display the HTML tags, but uses them to interpret the content of the page. HTML describes the structure of a website

Small HTML document <!DOCTYPE html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html>

Example Explained The DOCTYPE declaration defines the document type The text between <html> and </html> describes the web document The text between <body> and </body> describes the visible page content The text between <h1> and </h1> describes a heading The text between <p> and </p> describes paragraph Using the description, a web browser can display a document with a heading and a paragraph

HTML tags normally come in pairs like <p> and </p> The first tag in a pair is the start tag, the second tag is the end tag The end tag is written like the start tag, but with a slash before the tag name . Note: The start tag is often called the opening tag. The end tag is often called the closing tag.

Web Browsers The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML documents and display them. The browser does not display the HTML tags, but uses them to determine how to display the document as this.

HTML Versions Version Year HTML 1991 HTML + 1993 HTML 2.0 1995 1997 HTML 4.01 1999 XHTML 2000 HTML 5.0 2012

Advantages of HTML: 1. First advantage it is widely used. 2. Every browser supports HTML language. 3. Easy to learn and use. 4. It is by default in every windows so you don't need to purchase extra software.

Disadvantages of HTML: 1. It can create only static and plain pages so if we need dynamic pages then HTML is not useful. 2. Need to write lot of code for making simple webpage. 3. Security features are not good in HTML. 4. If we need to write long code for making a webpage then it produces some complexity

HTML Documents All HTML documents must start with a type declaration: <!DOCTYPE html>. The HTML document itself begins with <html> and ends with < /html>. The visible part of the HTML document is between <body> and </body

HTML headings HTML headings are defined with the <h1> to <h6> tags: Example <h1>This is a heading</h1> <h2>This is a heading</h2> <h3>This is a heading</h3>

HTML Links HTML links are defined with the <a> tag: Example <a href="http://www.google.com">This is a link</a>

Lab Activates (Example 1) This is heading 1 This is heading 2 This is heading 3 This is heading 4 This is heading 5 This is heading 6

Example 2 This is a link ( link to www.iu.edu.jo)

Example 3 HTML Tables number First Last Name points 1 Eve Jackson 94 2 John Doe 80 3 Adam Johnson 67 4 Jill Smith 50

Example 4(Bold) This text is normal. This text is bold.