INP150: Basic HTML Instructor: Paul J. Millis

Slides:



Advertisements
Similar presentations
Dr. Alexandra I. Cristea XHTML.
Advertisements

WeB application development
Website Design.
Teppo Räisänen LIIKE/OAMK 2010
XHTML Basics.
Pengantar Teknologi Mobile 13 Antonius Rachmat C, S.Kom, M.Cs XHTML.
XHTML 16-Apr-17.
HTML Computing Concepts HTML - An Introduction 1.
17-Jun-15 XHTML 2 What is XHTML? XHTML stands for Extensible Hypertext Markup Language XHTML is aimed to replace HTML.
Upgrading to XHTML DECO 3001 Tutorial 1 – Part 1 Presented by Ji Soo Yoon 19 February 2004 Slides adopted from
Computer Sciences Department
Basics of HTML.
Web Design Using HTML Codes. WHAT DO I NEED TO BEGIN DESIGNING A HOME PAGE? 1.YOU NEED A FOLDER (also called a DIRECTORY) You should set up a folder or.
 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.
CS 299 – Web Programming and Design Introduction to HTML.
HTML Structure & syntax
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.
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.
1 XHTML محمد احمدی نیا 2 Of 19 HTML vs XHTML  XHTML is a stricter and cleaner version of HTML.  by combining the strengths of HTML.
HTML INTRODUCTION, EDITORS, BASIC, ELEMENTS, ATTRIBUTES.
XHTML. Introduction to XHTML What Is XHTML? – XHTML stands for EXtensible HyperText Markup Language – XHTML is almost identical to HTML 4.01 – XHTML is.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
Just Enough HTML How to Create Basic HTML Documents.
Introduction to HTML. Slide 1 Hard-Coding What is hard-coding? –Creating the page in a text editor just using HTML A Web designer should know how to hard-
Creating Webpage Using HTML
1 Creating Web Pages Part 1. 2 OVERVIEW: HTML-What is it? HyperText Markup Language, the authoring language used to create documents on the World Wide.
Introduction to HTML Wah Yan College (Hong Kong) Mr. Li C.P.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
1 Web Application Programming Presented by: Mehwish Shafiq.
Lecture: Web Design Assis. Prof. Freshta Hanif Ehsan Faculty of Computer Science Kabul Polytechnic University Spring Semester
Kevin Murphy Basics of XML Masters Project CS 490.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
HTML HYPER TEXT MARKUP LANGUAGE. INTRODUCTION Normal text” surrounded by bracketed tags that tell browsers how to display web pages Pages end with “.htm”
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 Structure & syntax
What is XHTML? XHTML stands for Extensible Hypertext Markup Language
Online PD Basic HTML The Magic Of Web Pages
HTML Basics.
XHTML/CSS Week 1.
Introduction to basic HTML
Essential Tags Web Design – Sec 3-3
Introduction to HTML.
Elements of HTML Web Design – Sec 3-2
Uppingham Community College
INTRODUCTION TO HTML AND CSS
3.00cs HTML Overview 3.00cs Develop webpages.
What is XHTML?.
Essential Tags Web Design – Sec 3-3
S.Y.B.M.M. LECTURE SERIES - PART 2
Introduction to XHTML.
Elements of HTML Web Design – Sec 3-2
HTML Vocabulary.
WEBSITE DESIGN Chp 1
XHTML
Introducing HTML & XHTML:
3.02D HTML Overview 3.02 Develop webpages.
What is HTML anyway? HTML stands for HyperText Markup Language. Developed by scientist Tim Berners-Lee in 1990, HTML is the "hidden" code that helps us.
INTRODUCTION TO HTML AND CSS
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Web Application Development
Basic HTML Workshop.
HyperText Markup Language
XHTML 7-May-19.
3.02D HTML Overview 3.02 Develop webpages.
AN INTRODUCTION BY FAITH BRENNER
Lesson 2: HTML5 Coding.
4.02A HTML Overview 4.02 Develop web pages using various layouts and technologies. (Note to instructor: HTML tags are in red only to differentiate from.
XHTML 29-May-19.
محمد احمدی نیا XHTML محمد احمدی نیا
Creating Web Documents
Presentation transcript:

INP150: Basic HTML Instructor: Paul J. Millis Introduction to HTML INP150: Basic HTML Instructor: Paul J. Millis

HTML HTML stands for HyperText Markup Language Subset of SGML (Standardized General Markup Language)  Elements: Titles Paragraphs Lists Tables Images Consists of header and body

Creating HTML You can create an HTML document with any word processor or text editor HTML is not case sensitive; XHTML, the next iteration is HTML browsers will ignore any extra spaces that exist Allows you to make it readable Returns at the end of paragraphs will not appear Save as text only with an htm or html suffix (be consistent) Don’t ‘save as html’

Tags Written between angle brackets Usually come in pairs A closing tag should correspond to the last unclosed opening tag Use same command word Closing has extra forward slash Attributes precede the final closing bracket Space between multiple attributes Values should be enclosed in straight (" ") rather than curly quotes Tags are not case sensitive

Structure A Web Page contains these tags: <html>…</html> <head>…</head> <title>…</title> TITLE effects how search engines find things TITLE is what is on the blue bar on top of browser <body>…</body>

Headers Think of headers as hierarchical dividers: There are 6 levels You will seldom use more than 3 E.G. <h1>Main Heading</h1>

Paragraphs In order to start new paragraphs in HTML, use the <p> tag </P> is not required but is available and SHOULD be used &nbsp between paragraph tags will add space

Checking Your Progress Check your page in a browser (or several) FILE/OPEN PAGE is used It isn’t necessary to publish your pages before you view them Use RELOAD after making changes to Web Page

XHTML XHTML is not very different from HTML 4.01 XHTML stands for EXtensible HyperText Markup Language 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 an XML application

Getting Ready for XHTML Bringing your code up to 4.01 standards is a very good start Learn to write your HTML code in lowercase letters NEVER make the bad habit of skipping end tags like the </p> or </li> Empty elements must either have an end tag or the start tag must end with /> To make your XHTML compatible with today's browsers, you should add an extra space before the "/" symbol like this: <br  />, and this: <hr  />.  Elements must be properly nested Elements must be nested within the <html> root element