Intranets & HTML.

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

HTML popo.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
/k/k 1212 Cascading Style Sheets Part one Marko Boon
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
CSS. CSS, or Cascading Styles Sheets, is a way to style HTML. Whereas the HTML is the content, the style sheet is the presentation of that document.
1 Web Developer & Design Foundations with XHTML Chapter 9 Key Concepts.
1 Outline 9.1Introduction 9.2Markup Languages 9.3Editing HTML 9.4Common Tags 9.5Headers 9.6Text Styling 9.7Linking 9.8Images 9.9Formatting Text With 9.10Special.
 2001 Deitel & Associates, Inc. All rights reserved. 1 Outline 9.1Introduction 9.2Markup Languages 9.3Editing HTML 9.4Common Tags 9.5Headers 9.6Text Styling.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
HTML Introduction HTML
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.
Chapter 2 Introduction to HTML5 Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Slide 1 Today you will: think about criteria for judging a website understand that an effective website will match the needs and interests of users use.
HTML (HyperText Markup Language)
 HTML stands for Hyper Text Mark-up Language. The coding language used to create documents for the World Wide Web  HTML is composed of tags. HTML tags.
CP2022 Multimedia Internet Communication1 HTML and Hypertext The workings of the web Lecture 7.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
Introduction to HTML. What is a HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup tags  The.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
Just Enough HTML How to Create Basic HTML Documents.
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 software. Two types of web software Browser software – used to search for and view websites. Web development software – used to create webpages/websites.
CPSC 203 Introduction to Computers Lab 33 By Jie Gao.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
CPT 499 Internet Skills for Educators Session Ten Class Notes.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
HTML – The Basics COE 201- Computer Proficiency. The Internet The World Wide Web ▫Also known as the Web ▫Created in 1989  European Laboratory for Particle.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
HTML – The Basics Rebecca Shillingburg
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
1 Foundation of HTML Web Page Design. 2 Safe Web Fonts: Used by most computers regardless of environment or platform  Times New Roman  Arial  Courier.
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
HTML AN INTRODUCTION TO WEB PAGE PROGRAMMING. INTRODUCTION TO HTML With HTML you can create your own Web site. HTML stands for Hyper Text Markup Language.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
Lab 3 Html basics.
Basic concepts of web design
Introduction to HTML.
HTML Basics.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Style Sheets.
Elements of HTML Web Design – Sec 3-2
HTML GUIDE Press F5 and then
Uppingham Community College
INTRODUCTION TO HTML AND CSS
Web Developer & Design Foundations with XHTML
Creating a Home Page in HTML
Web software.
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
Introduction to XHTML.
Elements of HTML Web Design – Sec 3-2
Using Access and the Web
Microsoft Office Illustrated
A guide to HTML.
WEBSITE DESIGN Chp 1
Computers and Scientific Thinking David Reed, Creighton University
What are Cascading Stylesheets (CSS)?
INTRODUCTION TO HTML AND CSS
Chapter 16 The World Wide Web.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Computer communications
HyperText Markup Language
AN INTRODUCTION BY FAITH BRENNER
Lesson 2: HTML5 Coding.
WJEC GCSE Computer Science
Presentation transcript:

Intranets & HTML

Learning Objectives Describe the purpose of hypertext linking, identifying the means by which it can be achieved such as hot words / links, buttons and hypertext mark-up language (HTML). Describe the basic features of mark-up languages.

Intranet A website just like an internet web site but only accessible locally from within an organisation computer system. Limited number of users / pages (Access controlled by) use of passwords Allows for confidential / sensitive data

Advantages and disadvantages of an Intranet Hits will be from qualified people. Higher proportion of hits from interested parties. Greater chance of finding interesting information because of smaller number of sites. Less chance of misleading / hoax sites. Chance to keep research results restricted. More sensible discussion groups set up. Faster access because of smaller amount of data. Access / membership can be controlled. Disadvantages May lose chance of sensible comment because person does not have access.

HTML (HyperText Markup Language) Click View – Source on a web page to see the code which makes it. Today most people use web page creation software which creates the code for the designer while they use a ‘word-processing’ like environment to create the page. Before this type of software people had to learn HTML and even today some people still use it to full control of a web page or to make a fast to load complex web page. Is written in the form of tags, surrounded by angle brackets.

HTML (HyperText Markup Language) A computer language used to create multimedia pages. Each page consists of the text to be displayed with tags providing special instructions about the display. It also provides links to files / pages (picture/sound/video/…).

Basic page <html> <body> Search engines </body>

Basic page <html> <body> <h1>Search engines</h1> </body> </html> The <h1> tag sets text as a heading in style 1. Valid tags are <h1>; <h2>; <h3>; <h4>; <h5>; <h6>. What effect does changing the number have?

Basic page <html> <body> <h1>Search engines</h1> Yahoo<br> Excite<br> Google<br> </body> </html> <br> creates a line break <p> and </p> can be used to begin and end a paragraph

Some extension questions: What do you think the tags for bold would be? <B> </B> And the tags for Italic? <I> </I>

Adding hyperlinks <html> <body> <h1>Search engines</h1> <a href="http://www.yahoo.com">Yahoo</a><br> <a href="http://www.excite.co.uk">Excite</a><br> <a href="http://www.google.fr">Google</a><br> </body> </html> The URL of a hyperlink must be enclosed in quotation marks

Adding the title <head> <html> <head> <title>Information on search engines</title> </head> <body> <h1>Search engines</h1> <a href="http://www.yahoo.com">Yahoo</a><br> <a href="http://www.excite.co.uk">Excite</a><br> <a href="http://www.google.fr">Google</a><br> </body> </html> The title is not the same as the page heading

Page Heading <HEAD> … </HEAD> section goes before the <BODY> tag. Some search programs enter text in the ‘HEAD’ in a database so that the search engine can find it if it contains what the searcher wants. Thus it is a good idea to include some keywords in the title.

Example Stylesheet h1 { font-family: Arial, Helvetica, sans-serif; font-size: 24pt; font-weight: bold; color: #000066; text-align: center; } h2 { font-size: 18pt;

Example Stylesheet continued font-family: Arial, Helvetica, sans-serif; font-size: 12pt; color: #0000FF; text-align: right; } h4 { text-align: center;

Stylesheets Advantages of style sheets: Consistency, since the design can be the same throughout the site or section. Efficiency, since changes to one file are rippled through the site.

Specific Features Of HTML Links Provide a fast way of navigating between pages. e.g. <a href="http://www.yahoo.com">Yahoo</a> Hot words / buttons / spots Tags may be used to define some text as a link to allow simple searching. e.g. http://en.wikipedia.org/wiki/HTML Images Tags used to indicate where images are to be inserted into the text. e.g. <img src="images/school.gif" width="554" height="325" align="right">

Plenary Explain what is meant by a hypertext mark up language.

Plenary A computer language used to create multimedia pages. Each page consists of the text to be displayed with tags providing special instructions about the display. It also provides links to files / pages (picture/sound/video/…).

Plenary Describe the features of a hypertext mark up language that could be used when designing a web page.

Plenary Enhancement of text by use of colour/bold/font by enclosing text in tags. Use of head and body to convey information to search programs. Hot buttons to allow simple searching Style sheets to define formats to be used on whole areas. Tags may be used to indicate where illustrations are to be inserted into the text. Links provide a fast way of navigating between pages.