HTML: Pages and Tools.

Slides:



Advertisements
Similar presentations
HTML: HyperText Markup Language Hello World Welcome to the world!
Advertisements

 To create page, Komodo Editor  To share web page, UNC SERVER, ISIS (  To transfer page to ISIS,
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
 Question: What film character is a good analogy to a computer?  Answer Answer  It is actually a very simple machine: It executes exactly what it.
Server Web Server Pages Client Browser  HTML can do everything  We will limit our use to defining the content units – NOT formatting  Why? ›
 Page structure  Define the content › Text › Headers › Lists › Tables  Minor formatting.
13 February Building a Web Page. HTML Files Two types of information Text Instructions on how to display Instructions are in the form of tags Tags are.
Computer Science 1611 Internet & Web Creating Webpages Hypertext and the HTML Markup Language.
Tutorial 1: Getting Started with HTML5
Microsoft Office 2003 Illustrated Introductory a Presentation Creating.
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.
Tutorial 1 Developing a Basic Web Page. New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Objectives – Lesson 1 Introduction to the.
Chapter 2 HTML Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
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,
Web Design (3) HTML tags. Back to your web design ! Open Brackets Click on the drop down box on the left. Last time, you clicked on ‘Open Folder’ but.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
4 Chapter Four Introduction to HTML. 4 Chapter Objectives Learn basic HTML commands Discover how to display graphic image objects in Web pages Create.
Review Microsoft Word 2010 CS Edit and Format a Document  Open a previously saved document  Select text by  clicking,  clicking and dragging,
 Create a free account  Verify your address.
The References Tab contains tools that help users to easily create references, table of contents, indexes, captions, citations, footnotes, endnotes and.
Word 2003 The Word Screen. Word 2003 Screen File Menu –Holds the options for creating a new document, opening a document, saving a document, printing.
 Look especially at › File Tips and Shortcuts › Student video.
Lecture 3- Microsoft Word COE 201- Computer Proficiency.
SERVER web page repository WEB PAGE instructions stores information and instructions BROWSER retrieves web page and follows instructions Server Web Server.
HTML. HTML: What is it? – HTML stands for Hyper Text Markup Language – An HTML file is a text file containing small markup tags – The markup tags tell.
HTML Basic Structure. Page Title My First Heading My first paragraph.
Tutorial #1 Using HTML to Create Web Pages. HTML, XHTML, and CSS HTML – HyperText Markup Language The tags the browser uses to define the content of the.
 Create a free account  Verify your address.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
HTML Structure & syntax
Getting Started with HTML
HTML.
HTML CS 4640 Programming Languages for Web Applications
Introduction to HTML:.
HTML5 Basics.
Web Development & Design Foundations with HTML5 8th Edition
Lesson 16 Enhancing Documents
Essential Tags Web Design – Sec 3-3
11 October Building a Web Site.
Coding, Testing and Valdating a Web Page
XHTML Basics.
Essential Tags Web Design – Sec 3-3
Intro to Web Development Class A Review
Filezilla problems continuing
CSS.
XHTML Basics.
XHTML Basics.
Introducing HTML & XHTML:
How to format your paper for MLA style.
Academic Reports in MLA format
Intro to Web Development HTML Structure
Intro to Web Development Links
Structuring Content in a Web Document
Introduction to HTML5.
HTML Structure.
XHTML Basics.
CS3220 Web and Internet Programming HTML and XML Basics
HTML Basics.
The Most Basic HTML Page
XHTML Basics.
Multipage Sites.
Lesson 2: HTML5 Coding.
Web Programming and Design
Exploring Microsoft Word 2003
Because Presentation Matters
HTML CS 4640 Programming Languages for Web Applications
Web Design & Development
Monday, Sept. 24 Today we are going to update the html code to html5. It has some new features that we have not covered yet.
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Presentation transcript:

HTML: Pages and Tools

HTML redux

HTML Tags < tag-name [attribute-name=value]> </tag-name> No attributes on end tag Blank lines and spaces don’t matter

Two types of commands Start/end commands <command> ... </command> Single commands < command> or < command />

Important Difference Whether they start a new line or not Paragraphs do Emphasize does not

The Basics Regular text = paragraph Heading numbers represent style, not order Lists consist of list delimiters and list items

Correctly Nested Tags Some can take any content Some have restrictions divisions, footers Some have restrictions Paragraphs can not have lists inside them Some tags are limited as to where they can appear List items can only appear in lists Incorrectly nested tags MAY appear to work

Special Characters

Special symbols < and > are special symbols with special meanings How would you display A < B ? Suggestions? < for < and > for > & is an escape symbol, handled specially. Always ends with ; Means that you need a special way to display “&” too: & Full lists on Resources page

HTML tools

A better editor Understands commands Gives suggestions Recognizes mistakes Creates an appropriate file Easy to see results Help save them in the right place

Setting Up Komodo Creating a page Viewing the page Creating a project Chrome Creating a project Clean up your folder

General Page Structure <!DOCTYPE html> <html> <head> <! --- what shows up on the tab --- > <title>Put your title here</title> <! ---defining character necessary for validation --- > <meta charset="UTF-8"> </head> <body> <! --- the “good stuff” i--- > What will appear on the page <footer> Created by A. Person on a date </footer> </body> </html>

The Body Every page needs Minimal content Header (DIFFERENT THAN head) Footer Minimal content Header: title Footer: who wrote it and when

Filezilla redux

Post your page Clean up your folder Check before you submit Named correctly? Correct HTML?

How do you know? Validation http://validator.w3.org/

Helping yourself

Formatting your SOURCE Comments <!-- any text you want --> Indentation Nested parentheses Multi-line Line up start and end Things inside belong one tab over Single line Start, content, end on a single line Always include your name in date in every file

Formatting Help http://www.freeformatter.com/html-formatter.html

Do I have to do ALL that?