COMPUTING FUNDAMENTALS

Slides:



Advertisements
Similar presentations
Introduction to Web Design Lecture number:. Todays Aim: Introduction to Web-designing and how its done. Modelling websites in HTML.
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.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
HTML Minute University Richard Fisher 10/1/2001 HTML FSA Training2 HTML Overview  HTML  HyperText Markup Language.
LIST- HYPERLINK- IMAGES
Introduction to HTML CPS470 Software Engineering Fall 1998.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
 2004 Prentice Hall, Inc. All rights reserved. Introduction to XHTML: Part 1.
Introduction to HTML II Shih-Heng Chin. Preface Structure of a HTML File Elements used frequently Tables.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
Basics of HTML Shashanka Rao. Learning Objectives 1. HTML Overview 2. Head, Body, Title and Meta Elements 3.Heading, Paragraph Elements and Special Characters.
Computer Science 101 HTML. World Wide Web Invented by Tim Berners-Lee at CERN, the European Laboratory for Particle Physics in Geneva, Switzerland (roughly.
CS105 Introduction to Computer Concepts HTML
Chapter 2 HTML (Hypertext Markup Language) Part I.
HTML HTML stands for "Hyper Text Mark-up Language“. Technically, HTML is not a programming language, but rather a markup language. Used to create web pages.
4 HTML Basics 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.
Dr. Nuha El-KhaliliInternet Programming ( ) HTML Hyper Text Markup Language The language of web pages Maintained by the W3C
Images (1) Three most popular formats – Graphics Interchange Format (GIF) – Joint Photographic Experts Group (JPEG) – Portable Network Graphics (PNG) –
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 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
Getting Started with HTML Please use speaker notes for additional information!
What is Markup and Markup Languages? What is HTML? A Basic HTML Document Basic HTML Tags Tag Attributes and Text Formatting Tags Insert Hyperlinks Add.
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,
CS105 INTRODUCTION TO COMPUTER CONCEPTS HTML Instructor: Cuong (Charlie) Pham.
HTML: Hyptertext Markup Language Doman’s Sections.
Introduction HTML (Hypertext Markup Language) is used to create document on the World Wide Web. HTML is not a programming language, it is a markup language.
4 Chapter Four Introduction to HTML. 4 Chapter Objectives Learn basic HTML commands Discover how to display graphic image objects in Web pages Create.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
4 HTML Basics 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.
HTML (Hyper Text Markup Language) Lecture II. Review Writing HTML files for web pages – efficient compact – fundamental. Text files with htm extension.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
Basic HTML Programming Technology Education Ellsworth Community Middle School Communication Systems.
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.
REEM ALMOTIRI Information Technology Department Majmaah University.
1999, COMPUTER SCIENCE, BUU Introduction to HTML Seree Chinodom
1 HTML. 2 Full forms WWW – world Wide Web HTTP – Hyper Text Transfer Protocol HTML – Hyper Text Markup Language.
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.
Chapter 8 Introduction to HTML and Applets
HTML Basics.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Marking Up with XHTML Tags describe how a web page should look
Computer Fundamentals 2
Elements of HTML Web Design – Sec 3-2
HTML: HyperText Markup Language
Elements of HTML Web Design – Sec 3-2
Chapter 1: Introduction to XHTML (part 1)
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
Elements of HTML Web Design – Sec 3-2
Chapter 4 - Introduction to XHTML: Part 1
Computers and Scientific Thinking David Reed, Creighton University
Basic HTML and Embed Codes
Web Design and Development
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Introduction to HTML- Basics
Introduction to XHTML Cont:.
Pertemuan 1b
Chapter 16 The World Wide Web.
Introduction to HTML.
Marking Up with XHTML Tags describe how a web page should look
Basic HTML.
Pertemuan 1 Desain web Pertemuan 1
Marking Up with XHTML Tags describe how a web page should look
AN INTRODUCTION BY FAITH BRENNER
WJEC GCSE Computer Science
Marking Up with XHTML Tags describe how a web page should look
Presentation transcript:

COMPUTING FUNDAMENTALS LAB #1 COMPUTING FUNDAMENTALS LAB #10 INTRODUCTION TO HTML

What is HTML? HTML is a markup language for describing web documents (web pages). HTML stands for Hyper Text Markup Language Hypertext is text displayed on a computer display or other electronic devices with references (hyperlinks) to other text which the reader can immediately access. A markup language is a set of markup tags HTML documents are described by HTML tags [2].

An HTML Example RESULT

Basics of HTML HTML is set of instructions. Each instruction for Example <TITLE>, is called element.HTML is a programming language of sorts. The instructions are not compiled by a traditional compiler but rather by a WWW browser. Some element can have qualities called attributes. All elements are enclosed in < > brackets. Most elements require start and end tag. The start tag for TITLE looks like <TITLE> and end tag looks like </TITLE>. The groups of elements are as follows: The HEAD elements The BODY elements  Within the BODY section, elements are broken into groupings: Character, Image, List, Figure, Table and Form elements.

The <HTML> Elements The <HTML> element encloses the entire HTML document .The start tag <HTML> should be the first thing in HTML file and </HTML> should be the last one. Though it is optional but should be used. The <HEAD> Elements The <HEAD> element encloses the head section of the document. The title is always in the Head section. It is also optional. The <TITLE> Elements This element denotes the title of the documents.

The <Body> Elements The BODY Elements encloses the body section of the document. Most elements are found within the <BODY> element. Attributes BACKGROUND—This attribute can be used to specify URL of an image to tile as the document background. BGCOLOR—This attribute can be used to specify a color of the default background. It uses the values of color. TEXT—This attribute can be used to set a default color for all text that is displayed. The default color is black.

The <H1> Through <H6> (HEADLINE)Elements These elements are used for identifying headlines in the document. The <H1> element is used to denote the first level headline of an HTML document. There are six levels of headlines. The last is <H6>. All headlines must have end tags and be used in consistent. Attribute ALIGN—This attribute is used to specify where on the page the headline is to be displayed. The <B> (BOLD) Element The <B> element indicates that all characters between the starting tag <B> and ending tags </B> are to be bold. The <P> (PARAGRAPH) Elements The <P> Elements denotes the start of a new paragraph. The browser adds a blank at the point of tag <P> in order to separate two paragraphs. ALIGN—This attribute is used to specify where on the page the paragraph is to be displayed.

The <A> (HYPERLINK)Element The <A> (HYPERLINK)Element The <A> (HYPERLINK)Element The <A> is used to add a hyperlink to the document. The important attribute is HREF. The HREF attributes gives the location of the document to go to when the link is selected. Attributes HREF—The HREF attribute specifies that the anchor is the start of a hyperlink. The value of HREF is the destination of the hyperlink. NAME---This attribute is used to specify the location of an internal reference in a document.

The <BR> (LINE BREAK) Element The <BR> (LINE BREAK) Element This element is used for specifying line break in HTML document. The <BR> simply adds a carriage return at the location of the tag. The Image Elements The <IMG> element allows the user to include either GIF or JPEG images in the document. It is also used to create clickable image map which are also called inline graphics. Attributes SRC, WIDTH, HEIGHT, ALIGN, ALT, ISMAP, BORDER, HSPACE, VSPACE, USEMAP.

The LIST Element These are: <UL> is used to list item without specific order <OL> is used to list item with specific order <DL> definition list <MENU> items are displayed in a list but without the bullets to left <DIR>items are displayed in columns across the page 20 chr. per item <LH> is used to identify list header and used right after <UL> tag <LI> is used to identify the items of list and used within <UL></UL>tags

LAB TASKS Design the following web page using heading H1 to H6.

2. Using Center tag, design the following web page.

3. Create a hyperlink and navigate to it from your web page.

4. Using font color, design the following web page.

5. Add an image to the webpage.

6. Use the align attribute with <p> tag, design the following web page:

7. Create a page having three types of lists 7. Create a page having three types of lists. Ordered list, unordered list and Definition list. 8. What is the relationship between SGML, HTML, XML and XHTML?

References http://en.wikipedia.org/wiki/Markup_language http://www.w3schools.com/html/html_intro.asp