Web designp pt

12
WEB DESIGN Berni Durham-Jones By xIslandDesign

description

 

Transcript of Web designp pt

Page 1: Web designp pt

WEB DESIGN

Berni Durham-Jones

By xIslandDesign

Page 2: Web designp pt

Introduction

In this unit you will: Learn basic WYSIWYG web design Learn some basic HTML programming Learn how to use functions such as

hyperlinks and flash text.

Page 3: Web designp pt

WYSIWYG

What is a WYSIWYG editor?

A WhatYouSeeIsWhatYouGet Editor is a program that requires no programming knowledge to build a webpage.

These programs are often simple and the effects are very basic however they are good for fast page creation.

Page 4: Web designp pt

What is HTML?

HTML stands for Hyper Text Mark-up Language. It consists of several tags which tell the web browser what to display.

HTML is a simple language which can be easily wrote in a text editor such as notepad.

Page 5: Web designp pt

Your First HTML codeIn Notepad Type

<html><head>

<title>My Own Home Page </title> </head>

<body><H1> I am Your-Name and this is my web Page!</H1> </body>

</html>

Then Click Save as – mypage.html

Page 6: Web designp pt

What you have just done.

You have just created your first webpage – though simple the techniques can be applied to much more complicated designs.

The page consists of these tags.

Page 7: Web designp pt

THE <HTML> TAG

The tag <html> tells the browser that the html code is the beginning, this tag goes at the start of every webpage you make and its sibling </html> goes at the end.

Page 8: Web designp pt

THE <HEAD> TAG

The <head> tag is used to hold information about the site. The information between <head> and </head> will store info such as keywords for search engines and the title bar message.

Page 9: Web designp pt

THE <BODY> TAG

This tag is were all the important content is held such as the text on your page etc. This tag is important to remember because without it the webpage will not display properly.

Page 10: Web designp pt

Dreamweaver

Dreamweaver is essentially a WYSIWYG editor with some key differences- it also supports coding. This makes it one of the best software packages on the market today.

Page 11: Web designp pt

Basic Use Of Dreamweaver

ToolbarWork area Formatting box

Behaviours panel

Page 12: Web designp pt

Task

You will now create a webpage based on the skills you have just learned. A key point to remember is :

Layers are useful for ordering text