Your Own Web Page; Quick and Dirty Via Mashup Reminder: Next Quiz on 4/15

Similar documents
5/17/2009. Marking Up with HTML. An HTML Web Page File. Tags for Bold, Italic, and underline. Structuring Documents

CSE 3. Marking Up with HTML. Comics Updates Shortcut(s)/Tip(s) of the Day Google Earth/Google Maps ssh Anti-Spyware

Chapter 4: Marking Up With HTML: A Hypertext tmarkup Language Primer

Marking Up with HTML. Tags for Bold, Italic, and underline. An HTML Web Page File. Chapter 4: Marking Up With HTML: A. Formatting with Tags:

Chapter 4 A Hypertext Markup Language Primer

STD 7 th Paper 1 FA 4

CSC 121 Computers and Scientific Thinking

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML)

A Balanced Introduction to Computer Science, 3/E

HTML. Based mostly on

Creating Web Pages. Getting Started

HTML. Mohammed Alhessi M.Sc. Geomatics Engineering. Internet GIS Technologies كلية اآلداب - قسم الجغرافيا نظم المعلومات الجغرافية

Html basics Course Outline

HTML. Hypertext Markup Language. Code used to create web pages

Attributes & Images 1 Create a new webpage

A Brief Introduction to HTML

Creating Web Pages Using Netscape Composer AGENDA FOR THIS WORKSHOP. 1. How does it all work? 2. What do I need to get started at Fairfield?

Chapter 3 Web Design & HTML. Web Design Class Mrs. Johnson

The internet is a worldwide collection of networks that link millions of computers. These links allow the computers to share and send data.

request HTML Document send HTML Document

(Refer Slide Time: 01:41) (Refer Slide Time: 01:42)

A HTML document has two sections 1) HEAD section and 2) BODY section A HTML file is saved with.html or.htm extension

HTML OBJECTIVES WHAT IS HTML? BY FAITH BRENNER AN INTRODUCTION

Chapter 4 A Hypertext Markup Language Primer

Web Programming Week 2 Semester Byron Fisher 2018

Hypertext Markup Language, or HTML, is a markup

This document provides a concise, introductory lesson in HTML formatting.

Web Engineering (Lecture 01)

Web Design 101. What is HTML? HTML Tags. Web Browsers. <!DOCTYPE html> <html> <body> <h1>my First Heading</h1> <p>my first paragraph.

c122jan2714.notebook January 27, 2014

Introduction to HTML

1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5

Dreamweaver CS6. Level 1. Topics Workspaces Basic HTML Basic CSS

Unit 5 Web Publishing Systems Page 1 of 13 Part 4 HTML Part 4

Class 7. Choose the correct answer:

Geocaching HTML & BBCode FUNdamentals by Scott Aleckson (SSO JOAT)

It is possible to create webpages without knowing anything about the HTML source behind the page.

All Creative Designs. Basic HTML for PC Tutorial Part 1 Using MS Notepad (Version May 2013) My First Web Page

CMPT 165 Unit 2 Markup Part 2

FCKEditor v1.0 Basic Formatting Create Links Insert Tables

INTRODUCTION TO WEB USING HTML What is HTML?

Training Sister Hicks

FIT 100 LAB Activity 3: Constructing HTML Documents

What You Will Learn Today

Web Page Creation Part I. CS27101 Introduction to Web Interface Design Prof. Angela Guercio

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal

Adobe Dreamweaver CS5/6: Learning the Tools

Desire2Learn: HTML Basics

Creating Web Pages with SeaMonkey Composer

The building block of a CSS stylesheet. A rule consists of a selector and a declaration block (one or more declarations).

Basic HTML Handout & Exercise Web Technology

Very Basics of HTML. G day mates during this tutorial I will teach you the basics of HTML.

Introduction to HTML. SSE 3200 Web-based Services. Michigan Technological University Nilufer Onder

Dreamweaver Primer. Using Dreamweaver to Create and Publish Simple Web Pages. Mark Branom, Stanford University, Continuing Studies June 2011

WEB APPLICATION. XI, Code- 803

This is a paragraph. It's quite short.

INTRODUCTION TO HTML5! HTML5 Page Structure!

DREAMWEAVER QUICK START TABLE OF CONTENT

HTML TUTORIAL ONE. Understanding What XHTML is Not

Tutorial 2 - HTML basics

Glossary. advance: to move forward

HTML, CSS, JavaScript

Developing a Basic Web Page

University of Hawaii at Hilo WEB AND HTML THE INTERNET MAP ( COURTESY OF WIKIMEDIA COMMONS)

Chapter 4. Introduction to XHTML: Part 1

A website is a way to present your content to the world, using HTML to present that content and make it look good

Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM Advanced Internet Technology Lab.

Authoring OpenStax Documents in Apache OpenOffice Writer *

Web Designing HTML5 NOTES

Brief Intro to HTML. CITS3403 Agile Web Development. 2018, Semester 1

Web Design and HTML. Web Page vs Web Site. Navigation. Links. A web page is a single page viewable using web browser. A web site is a set of web pages

Objective % Select and utilize tools to design and develop websites.

Understanding structure Learning about markup Tags and elements. Structure COPYRIGHTED MATERIAL

What is a web site? Web editors Introduction to HTML (Hyper Text Markup Language)

Rich Text Editor Quick Reference

The University of Hawaii at Manoa Library Webpage Content/Design/Style Guidelines General Site Design... 2

University of Pittsburgh Communications Services. Basic Training Manual Drupal 7

HTML = hyper text markup language

AOS Lab 4 HTML, CSS and Your Webpage

unformatted text: this is also known as plaintext and enables pages to be created which comprise strings of fixed-

Unit 2 - HTML Formatting

Introduction to WEB PROGRAMMING

Introduction to Computers and Their Applications

Hyper Text Markup Language

Hyper Text Markup Language HTML: A Tutorial

The content editor has two view modes: simple mode and advanced mode. Change the view in the upper-right corner of the content editor.

Hyper Text Markup Language

I-5 Internet Applications

The City School. Prep Section. ICTech. 2 nd Term. PAF Chapter. Class 8. Worksheets for Intervention Classes

The City School. Prep Section. ICTech. 2 nd Term. PAF Chapter. Class 7. Worksheets for Intervention Classes

Introduction to the MODx Manager

Management Information Systems

HTML Hyper Text Markup Language

Using the Sp13 Text Editor elearning Blackboard Learn 9.1 for Students

WEBSITE DEVELOPMENT CODERDOJO ATHENRY 2014

Final Study Guide Arts & Communications

11. HTML5 and Future Web Application

Thinking About a Personal Database

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets

CSC 101: PreLab Reading for Lab #4 More HTML (some of this reading on Tables and Images are based on previous writings of Prof William Turkett)

Transcription:

Your Own Web Page; Quick and Dirty Via Mashup Reminder: Next Quiz on 4/15

A Special Language for the Web In the early 1990 s web pages were mostly described using a special purpose language, called Hyper-Text Markup Language, HTML HTML provides markup tags to provide hints of how a document should be rendered HTML also provides tags for structuring documents and provides a container for web content

Marking Up with HTML Tags describe how a web page should look Formatting with Tags: Words or abbreviations enclosed in angle brackets < > Come in pairs (beginning and end): <title> </title> Tags are not case-sensitive, but the actual text between the tags is

Bold: <b> </b> Italic: <i> </i> Text Formatting Tag pair surrounds the text to be formatted You can apply more than one kind of formatting at a time <b><i>go Tarheels!</i></b> produces: Go Tarheels! Tags can be in any order, but have to be nested correctly Some tags do not surround anything, so they don't have an ending form: <hr> inserts horizontal line <br> inserts a line break

HTML Web Page Structure Begins with <html> and ends with </html> <html> <head> <title>preliminary Data Goes Here</title> </head> <body> The Page s main content go here </body> </html>

Headings: Structuring Documents Choice of eight levels of heading tags to produce headings, subheadings, etc. Headings display material in large font on a new line <h1>pope</h1> <h2>cardinal</h2> <h3>archbishop</h3> Produces: Pope Cardinal Archbishop

HTML Format vs. Display Format HTML does not preserve your formatting as typed Successive lines may be joined Unexpected breaks my be introduced HTML source tells the browser how to produce the formatted image based on tags, not on how it is formatted in the file (The <pre> </pre> preformatted tag allows you to get around this rule somewhat). Human-written HTML is usually formatted to make it easier for people to understand However, most modern HTML is machine generated

Special Symbols in HTML If a web page needed to show a math relationship like 0 < p > r The browser would interpret < p > as a paragraph tag, and would not display it HTML provides an escape mechanism for specifying reserved and difficult to type character entities : &descriptive_name; see http://www.intuitive.com/coolweb/entities.html for a list Ex: To show angle brackets, use escape symbol ampersand (&), then an abbreviation, then a semicolon (;) < displays as <

Attributes in HTML Text alignment can also be described in HTML For text alignment, one can specify left, right, or center Attributes appear inside the angle brackets, after tag word and equal sign, in double quotes <p align="center"> (default justification is left) Horizontal rule attribute: width and size (thickness) can be specified or left to default

Marking Links With Anchor Tags Hyperlinks are one of key innovations of Web documents, in comparison to other Rich Text formatting languages, that predated the web. They allow one document to link to another in response to being selected There are two parts of a hyperlink: 1. Anchor text (the text in the current document that is highlighted) 2. Hyperlink reference (the address of the other Web page) Begin with <a followed by a space Give the link reference using href="filename" Close tag with </a>

Including Pictures With Image Tags Image Tag Format: <img src="filename"> src stands for source GIF, PNG, and JPEG Images are the most widely supported GIF: Graphic Interchange Format JPEG: Joint Photographic Experts Group Image format is implied by the filename extension (.gif,.jpg) Pictures can be used as links by surrounding them with an anchor tag

Modern Web Authoring HTML was designed in a era when people generated most Web content Today PROGRAMS generate most web content Moreover, many are dynamic Let s see how easy it is generate amazing web content using today s tools Goto: html://www.popfly.com

Preliminaries You may need to register first (Popfly is currently in Beta) Eventually, you should get to the option: Create a Webpage

A WYSIWYG Web Editor You can follow the on-line tutorial Customize and save it It s cool, but no competition to Facebook Could we do something like that?

Mashup Mashup is a new web technology that allows a web page author to easily generate dynamic content. Basically, it allows you to reconnect web content in unique ways. This is done via a program, but the program is generated rather painlessly.

Example There are online step-by-step instructions at http://www.unc.edu/courses/2008spring/comp/101/001/mashup The online demo assumes that you have a Facebook page, if you do not, there are still other interesting alternatives to try using the online popfly tutorials

Next Time We will look in more detail about how media is represented (pictures, sounds, movies) in computers