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

Similar documents
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

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

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

Class 7. Choose the correct answer:

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

HTML OBJECTIVES WHAT IS HTML? BY FAITH BRENNER AN INTRODUCTION

Creating Web Pages. Getting Started

STD 7 th Paper 1 FA 4

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

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

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

Attributes & Images 1 Create a new webpage

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

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

CREATING A WEBSITE USING CSS. Mrs. Procopio CTEC6 MYP1

Chapter 4. Introduction to XHTML: Part 1

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

A Dreamweaver Tutorial. Contents Page

Chapter 7 Typography, Style Sheets, and Color. Mrs. Johnson

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

Developing a Basic Web Page

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

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

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

CSCE 101. Creating Web Pages with HTML5 Applying style with CSS

Desire2Learn: HTML Basics

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

Lecturer. Haider M. Habeeb. Second Year, First Course

HTML. Based mostly on

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9

Introduction to Web Page Designing Using HTML

Class X Chapter 4 Hypertext Markup Language (HTML)

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

ADOBE Dreamweaver CS3 Basics

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

request HTML Document send HTML Document

ICT IGCSE Practical Revision Presentation Web Authoring

THE HITCHHIKERS GUIDE TO HTML

Final Exam Study Guide

Skill Area 323: Design and Develop Website. Multimedia and Web Design (MWD)

Html basics Course Outline

What You Will Learn Today

1 of 7 11/12/2009 9:29 AM

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:

A Brief Introduction to HTML

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

Introduction to Web Development

FrontPage 2003 Lesson 4 - Creating Individual Pages. Adding a Page Using a Template. Web Page Title. Saving a Web Page

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

Tutorial 2 - HTML basics

HTML Hints & Tips. HTML is short for HyperText Markup Language.

Glossary. advance: to move forward

Microsoft FrontPage. An Introduction to. Lecture No.1. Date: April Instructor: Mr. Mustafa Babagil. Prepared By: Nima Hashemian

APPENDIX THE TOOLBAR. File Functions

A Frontpage Tutorial. Contents Page

I-5 Internet Applications

ITL Public School Mid Term examination ( )

Hyper Text Markup Language HTML: A Tutorial

MODULE 2 HTML 5 FUNDAMENTALS. HyperText. > Douglas Engelbart ( )

HTML = hyper text markup language

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

Figure 1 Properties panel, HTML mode

Lesson 5 Introduction to Cascading Style Sheets

Web Development & Design Foundations with XHTML. Chapter 2 Key Concepts

Creating Web Pages with SeaMonkey Composer

Basics of Web Design, 3 rd Edition Instructor Materials Chapter 2 Test Bank

HTML and CSS: An Introduction

HTTP & Websites. Web Browsers. Web Servers vs. Web sites. World Wide Web. Internet Explorer. Surfing the World Wide Web. Part 4. The World Wide Web

Objectives. Introduction to HTML. Objectives. Objectives

INTRODUCTION TO WEB USING HTML What is HTML?

Creating a Website with Dreamweaver 4

DREAMWEAVER QUICK START TABLE OF CONTENT

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

All Creative Designs. Basic HTML for PC Tutorial Part 2 Using MS Notepad Revised Version May My First Web Page

Adobe Dreamweaver CS5/6: Learning the Tools

Programmazione Web a.a. 2017/2018 HTML5

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?

Enhancing your Page. Text Effects. Paragraph Effects. Headings

WEBSITE PROJECT 2 PURPOSE: INSTRUCTIONS: REQUIREMENTS:

Dreamweaver MX Overview. Maintaining a Web Site

FCKEditor v1.0 Basic Formatting Create Links Insert Tables

Creating Forms. Starting the Page. another way of applying a template to a page.

HTML Hyperlinks (Links)

Chapter 4 A Hypertext Markup Language Primer

Dreamweaver Basics Outline

MMGD0204 Web Application Technologies. Chapter 3 HTML - TEXT FORMATTING

INTRODUCTION TO HTML5! HTML5 Page Structure!

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) Learning Objectives (2 of 2)

Introduction to FrontPage 2002

HTML Exercise 20 Linking Pictures To Other Documents Or Web Sites

Hypertext Markup Language, or HTML, is a markup

FIT 100 LAB Activity 3: Constructing HTML Documents

Introduction. The purpose of this document is to provide information for using basic HTML to create web pages by introducing the following concepts:

Introduction, Notepad++, File Structure, 9 Tags, Hyperlinks 1

Do It Yourself Website Editing Training Guide

Chapter 4 Notes. Creating Tables in a Website

Rich Text Editor Quick Reference

Transcription:

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

Web Design Web design is the design and development of a page or a web site. A web site is the entire site, like www.target.com A page is one single page for the web.

HTML HTML stands for Hyper-Text Markup Language HTML is a set of special codes, called tags, that are used to mark up plain text so that a browser application (IE) knows how to display the text in a browser window.

Here is a sample of HTML <html> <head> <title>an example HTML document</title> </head> <body> <p>hello World!</p> </body> </html>

This is what the code says Hello World!

How to start HTML HTML code always begins with the tag <html> This tells the computer software that it will be a webpage

Tags The html, head, title, and body tags are called document tags: Html tag tells the browser that the file contains HyperText Markup Language The head tag is the section that contains information about the document, including it s title. This section will not be displayed as part of the document content.

<head> <head> <title>untitled Document</title> <!--.style1 {font-size: x-large}.style2 {color: #99CC66} --> </style> </head>

Tags The title tag marks the document title. The title section must be within the head section. The document title should be descriptive as it is displayed in the title bar of the browser's window and is also used when the user adds the document to the Favorite s List. The body tag defines the body section, which contains the document s content. All content must be enclosed in the appropriate tags.

body The body is what your viewer will be reading. The body is either text, pictures, or Flash <body> ---begins the body process

After the <body> you can begin to type your page <p> is for paragraph, it begins the paragraph </p> ends the paragraph <p align= center > will center align. You will change the center to left or right to have it justified left or right.

Paragraph <p> Text enclosed by the <p> and </p> is a paragraph. Lines of paragraph text are automatically wrapped by the browser and a blank line is added after each paragraph.

Break <br> To move a line of text within a paragraph to the next line, a break tag <br> can be used. This is one of the few HTML tags that does not need to be paired with an ending break </br>

is the code for creating a space To have several spaces, you would code: <p> </p> That code will place 3 spaces

Naming a file Can be up to 255 characters long and can contain letters, the underscore character (_), and numbers. IT CAN NOT contain colons (:), question marks (?) and some other special characters There should not be any spaces, the document name should be lowercase The extension is.htm à example index.htm

headings Headings are tags to emphasize text. There are six levels of headings <h1>largest, about size 36</h1> <h2>larger, about size 24</h2> <h3>large, about size 18</h3> <h4>small, about size 12</h4> <h5>smaller, about size 8</h5> <h6>smallest, about size 6</h6>

colors <body bgcolor= Black text= Silver > Black color is actually coded as #000000 Silver color is actually coded as #C0C0C0 List of colors can be found at: http://www.visibone.com/colorlab/ http://html-color-codes.com/

Horizontal Rules <hr> tag places a horizontal rule (line) across the width of the browser window. This divides the text in the browser window into sections for easier reading. The width, align, and size attributes of the <hr> tag can be used to modify the features of the rule

Horizontal Rules <hr width= 50% align= left size= 4 > This tag includes attributes that display a rule across half of the browser window (50%), left aligned, and with a thickness of 4 pixels

Comments Comments are used to explain and clarify HTML to the reader of an HTML document. They do not appear in a browser window. < -- draws a centered horizontal line across 75% of the screen-- > <hr width= 75% >

Hyperlinks The anchor tag <a> is used to mark text that is a link. The href attribute is set in the tag to the name of the linked document. Here is the code: <html> <body> <p>images can come from sources including<a href= digicam.htm >digital cameras</a></p> </body> </html>

hyperlinks <html> <body> <p>images can come from sources including<a href= digicam.htm > digital cameras</a></ p> </body> </html> The words digital cameras is where the blue underline would be to represent a hyperlink.