13 September Building a Web Page (cont.). Triangle Assignment Assignment: Given three numbers, determine if they could constitute a triangle Examples.

Slides:



Advertisements
Similar presentations
HTML Tags and Their Functions
Advertisements

HyperText Markup Language (HTML). Introduction to HTML Hyper Text Markup Language HTML Example The structure of an HTML document Agenda.
CREATED BY : VIRAL M.KORADIYA. Anchor elements are defined by the element. The element accepts several attributes, but either the Name or HREF attribute.
Cascading Style Sheets. CSS stands for Cascading Style Sheets and is a simple styling language which allows attaching style to HTML elements. CSS is a.
กระบวนวิชา CSS. What is CSS? CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 4.0 to.
Chapter 8 Creating Style Sheets.
How Tags are used to form your Web Page
HTML Tags. Bolding Text Or Italics Text Or
 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.
Design, Formatting, CSS, & Colors 27 February, 2011.
SERVER web page repository WEB PAGE instructions stores information and instructions BROWSER retrieves web page and follows instructions Server Web.
Server Web Server Pages Client Browser  HTML can do everything  We will limit our use to defining the content units – NOT formatting  Why? ›
Design, Formatting, CSS, & Colors September 9, 2010.
 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.
Structure and formatting HTML pages Helen Treharne Department of Computing.
15 November Review Introduction to Databases. Take Home: Hand In.
ETT 229 Fall 2004 Web Design Basics II. Agenda 11:00-11:05 – Quiz 14 11:05-11:50 – Web Design Lecture 11:50-12:15 – Web Design Practice 2.
Final Exam Our final will be held: –Thursday, May 3 rd –From 4:00 to 5:50 PM –In 109 CIWW (same room as class) There will be no make up and the final is.
Final Exam Our final will be held: –Monday, December 19 th –From 2:00 to 3:50 PM –In 809 Silver There will be no make up and the final is mandatory. It.
Final Exam Our final will be held: –Thursday, May 8 th –4:00 PM - 5:50 PM –In 109 CIWW (same room as class) There will be no make up and the final is mandatory.
There is a certain way that an HTML file should be set up. The HTML section declares a beginning and an ending. Within the HTML, there should be a HEAD.
ETT 429 Spring 2007 Web Design I.
Glencoe Digital Communication Tools Create a Web Page with HTML Chapter Contents Lesson 4.1Lesson 4.1 Get Started with HTML (85) Lesson 4.2Lesson 4.2 Format.
Web Design is a class created to nurture the minds of high school techies, and introduce those without prior knowledge to the field.
HTML. Goals How to use the Komodo editor HTML coding and testing Basic HTML tags List and Images Tables and Links At least 2 pages and navigation
HTML Basics An Introduction to HTML. What is HTML? Stands for “Hyper Text Markup Language” Composed of “tags” which are surrounded by sideways triangles.
Basic HTML tags Beginning Web Site Design Stanford University Continuing Studies CS 03
© 2005 ComputerPREP, Inc. All rights reserved. HTML 4.0 and Web Page Design Module I.
Introduction to HTML academy.zariba.com 1. Lecture Content 1.What is HTML? 2.The HTML Tag 3.Most popular HTML tags 2.
HTML. Goals How to use the Komodo editor HTML coding and testing – List and Images – Tables and Links – At least 2 pages and navigation –
CS105 Introduction to Computer Concepts HTML
Creating Content That Looks Great Justin Prevatte (AAMFT & themelogic)
HTML basics exercises.
Making Your Web Page Changing your Essay into a Web Page.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
Copyright (c) 2004 Prentice-Hall. All rights reserved. 1 Committed to Shaping the Next Generation of IT Experts. Formatting Text and Lists Essentials for.
CSCI 1101 Intro to Computers
1 Lesson 3 Power Techniques HTML and JavaScript BASICS, 4 th Edition Barksdale / Turner.
Web Programming Basics of HTML. HTML stands for Hyper Text Mark-up Language A mark-up language is different than those that you have learned before in.
CPT 123 Internet Skills Class Notes Publishing to the Web Session B.
All you ever needed to know…and more!. H.T.M.L. HyperText Mark-up Language Web’s programming language All web browsers Set of instructions Written with.
MICROSOFT WORD Options like New, save, Close, Selecting Text How to change text using Bold, Italics, Underline How to change Font, Font Size, Color Justification.
Multimedia Journalism Multimedia Journalism HTML Primer Sec. C1 – Feb 09, 2009.
CS105 INTRODUCTION TO COMPUTER CONCEPTS HTML Instructor: Cuong (Charlie) Pham.
CREATING WEB PAGES Using…More HTML code! My First \ Web Page.
Wikis. Some resources  What is a wiki:  How do you make a PBWorks account:
CPSC 203 Introduction to Computers Lab 33 By Jie Gao.
HTML— More Tags, Formatting, and Lists. Formatting Tags  Bold  Italics  Underline  Big text  Small text  Subscript (H 2 O)  Superscript (10 3 )
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Exploring Microsoft Microsoft FrontPage Chapter 21 Exploring Microsoft FrontPage 2002 Chapter 1 Creating a Home Page: Introduction to MS FrontPage.
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.
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.
The Web Wizard’s Guide to HTML Chapter Two Basic Text Formatting.
Creating Tables in a Web Site HTML 4 Created by S. Cox.
Introduction to Web Authoring Ellen Cushman /wra210.htm Class mtg. #2.
CS134 Web Design & Development Attributes, Lists, Tables, Links, and Images Mehmud Abliz.
1999, COMPUTER SCIENCE, BUU Introduction to HTML Seree Chinodom
13 October Building a Web Site. Current events Cherelle Scott.
Schoolwires – District 205 created by Andrew Chidester.
1 HTML. 2 Full forms WWW – world Wide Web HTTP – Hyper Text Transfer Protocol HTML – Hyper Text Markup Language.
1 R3 R1 R5 R4 R6 R2 B B A A Looking at the Code Under the View menu Select Source.
Introduction to HTML 4.0 Getting Started – Links, Images, Font, and List Teacher: Mr. Ho.
HTML  HyperText Markup Language  The Language used to design web pages  Code mixed with text  Tags enclosed in angle brackets  Single tags  Paired.
CSS for Styling By Jinzhu Gao.
Create a new stylesheet called Hotel Style
11 October Building a Web Site.
Learning the Basics – Lesson 1
HTML Formatting.
Presentation transcript:

13 September Building a Web Page (cont.)

Triangle Assignment Assignment: Given three numbers, determine if they could constitute a triangle Examples 3,3,3 => yes 0,1,2 => no 1,1,2 => no -3,3,3 => no 1,3,3 => no 3,4,5 => yes

Solution Considerations How many combinations do you need to check? Are there ways to do less? Make sure that you produce “yes” or “no” Check for invalid numbers Ask someone else to follow the algorithm for you

Resubmission Whether you change it or not, please resubmit it as assignment 2 Using Assignment rather than Digital Dropbox

World Cyber Games Country competitions to compete in Singapore in November ( Competition in 8 games: Counter-Strike, FIFA Soccer 2005, Need for Speed, StarCraft, WarCraft III, Warhammer 40k, Dead or Alive Ultimate, Halo 2 Team competition US competition 183 men and 1 woman, aged 15 to 28 4,000 spectators over three days Winning team, Team 3D, has manager (Craig Levine, founder) and sponsors (Intel and nVidia)Team 3D some players paid a regular living stipend and practice and play tournaments full time How many of you are gamers? How serious? Why the gender disparity NY Times, September 12

Back to HTML Every page has

Text Attributes Effects Bold Italic Underline Alignment ALIGN=LEFT|RIGHT|CENTER|JUSTIFY Attribute on paragraph, heading, … Font with attributes face color Size More modern way of defining many attributes is a style sheet, which collects the information and let’s you reuse it Let’s do formatting without Mozilla composer Can use cheat sheet:

Structural Components Headings Citations Quotations Why do you want this instead of just format? Presentation – how it looks Semantics – what it means

Lists and Tables Regular text is a paragraph Lists are more fixed formats Ordered Bulleted Unordered Numbers or letters Definition Terms and definitions Tables Two dimensions Format options Headings

Tables Need to define Table Row Header (optional) Data Caption (optional) Formatting size Borders Can contain anything Other tables Pictures …

Let’s Try Lists and Tables

Animation on a Computer Let’s look at some animated clipsclips What did you see? How many colors? Motion? Is sound the same?

Colors in HTML What are the three primary colors? HTML uses an RGB (Red-Green-Blue) definition Values are (0,0,0) and (255,255,255) represent black and white. Which is which? Mixing paint vs. mixing light (0,0,0) = black; (255,255,255) = white

How to indicate colors There are a set of predefined colors that you can use Or you can write them out as rgb (200, 130, 125) We’ll look at other formats later in the semester

Referencing Other Pieces Access to pictures and links Most common error Need complete information for an external picture or link Need to make sure local references are moved with the page

Retrieving information on a computer Accessing local information Accessing remote information How does networking work?

Links General model Anchor to click on Pointer to the page Types Internal Page Site External

Pictures Inserting with tag Positioning Borders Size