1) Introduction to HTML

Size: px
Start display at page:

Download "1) Introduction to HTML"

Transcription

1 1) Introduction to HTML a) Two ways to Create a webpage (Hyper- Text Document): i) WYSIWYG: What You See Is What You Get: Drag- n- Drop tools like Microsoft Word and Adobe Dreamweaver i) Markup Language: A set of formal specifications used to define information. b) HTML: (Hyper- Text Markup Language) is a set of specifications (each one with an individual markup tag) that can be used to define the elements of hypertext document. The objective of HTML is to specify how a particular text should be processed. Developed by Tim Berners- Lee. i) Advantages of Having Different previews in Different Web Browsers: (1) Hypertext documents can be used in all platforms such as Microsoft Windows and Unix. (2) Hypertext documents can be displayed faster because text specifications following each individual computer will result in smaller files. Each file will increase in size if each text requires different specifications. ii) Disadvantage: Users are not able to preview their hypertext document design in other types of web browsers or on other platforms. c) Two Main elements in a Website (Hyper- Text Document): <Name Tag> Document Content</ Name tag> i) Document Content: Information that you wish to display on the web browser. ii) Tag: The code that will determine how the document content will be displayed. Placed in Brackets <> d) Headings, Paragraphs, Lists i) Heading: is normally text with bigger fonts than the rest of the text. HTML contains six stages of headings (x = 1 to 6). <Hx>Heading Text</Hx> ii) Paragraph: Texts arranged in paragraphs do not need a particular format. (1) <P> tag creates one empty line before the next paragraph. (2) <BR> tag or break can also be used to replace the return key to create an empty line before and after a paragraph. iii) Lists: In HTML, there are two types of tags to generate lists: (1) Ordered list: <OL> is a list that follows a number sequence. (2) Unordered list: <UL> is a list that does not follow a particular sequence. <HTML> <HEAD> <TITLE>Ahmad s Web</TITLE> </HEAD> <BODY> <H1>Curriculum Vitae</H1> <H2>Ahmad Yusuf</H2> </BODY> </HTML> <OL> <LI>item A</LI> <LI>item B</LI> <LI>item C</LI> </OL> e) Lines & Graphic: i) Lines: <HR> Horizontal Tag Line (no vertical lines in HTML). <HR ALIGN= x SIZE= y WIDTH= z > ii) Two Types of Graphic format that you can use in HTML (1) GIF: Graphics Interchange Format (2) JPEG: Joint Photographic Experts Group. The benefit of this format is the file size is smaller than other file formats such as BMP and PCX. <IMG SRC= name_file_graphic > 2) Hypertext Link a) Anchor: <A> tag which becomes the marker or destination that will be accessed using links. Can use other objects as markers as well. i) Once you have created an anchor, you will need to create a suitable link for it. Creating an Anchor <A NAME= Edu >Education</A> Link Calling an Anchor <A HREF= #Edu >Education</A> Page 1

2 b) Two types of paths in HTML: i) Absolute path: Actual location of a file in your computer. In HTML, the absolute path begins with the / symbol. This symbol refers to the root or drive where the file is located. Eg: /Student/Topic1/activity1.htm ii) Relative path: Location of a relative file to a document that you have opened. This path does not begin with the symbol / (Forward slash), instead the symbol.. (Double dot) is used to refer to a file or folder that is located one level above the document. c) Uniform Resource Locator (URL): The standard to state Internet document's location. d) HTTP (Hypertext Transfer Protocol): A communications protocol. It is also a set of programmes that determine how information is transferred from one computer to another computer. e) Link with <A HREF="mailto: @address.com"> Address</A> If a visitor clicks on the e- mail address, automatically the e- mail application in the visitor's computer will run 3) Website Design a) Adding Colours: i) Two ways to represent colour in HTML. (1) Colour Value: Numerals that represent a particular colour. Eg: FF0000 (2) Colour Name: Name that represents a particular colour. Eg: Red ii) Body Tag: <BODY> (1) Properties of Body Tag: <BODY BGCOLOUR= colour TEXT= colour LINK= colour VLINK= colour"> (a) BGCOLOUR: To determine the background colour of the document. (b) TEXT: To determine the document text colour. (c) LINK: To determine the colour of the links. (d) VLINK: To determine the colour of visited links. d) Font Modification: i) Changing Font Color: <FONT COLOUR= colour >Text To Be Changed</FONT> ii) Changing Font Type: <FONT FACE= font_type >Text To Be Changed</FONT> iii) Changing Font Size: <FONT SIZE= Size >Text To Be Changed</FONT> e) Manipulating Images: i) <IMG SRC= graphic_file_name ALIGN= align ALT= text_mouse_over VSPACE= vertical_distance HSPACE= horizontal_distance WIDTH= width HEIGHT= height" > Page 2

3 ii) Ways to decrease the filesize of an HTML document: (1) Decrease the total colour that you are using. Use 256 colours and not 16.7 million colours. (2) Decrease the graphic size by using GIF (Graphics Interchange Format) Can display max 256 colors Suitable for Simple images (logos etc.) Saves transparent and animated images graphic application such as Paint and Adobe (this is not changing the width value and height in the IMG tag). (3) Try to save the graphic in GIF and JPEG formats. Choose the format with the smaller file size which does not improvise the quality of the graphic. (4) Use GIF animation only for small images such as icons, lines and button. (5) Use thumbnails, which are small images with low image quality. Place a link at the thumbnail images to the actual graphic image. This gives the visitor the opportunity to view the actual image. (6) Recycle graphics. This is because web browsers will save graphic files when you first access them into your computer. If needed, the computer can access the same file at a later date. JPEG (Joint Photographic Experts Group) Can display 16.7 million colors Suitable for photographic and video images Creating an Image Map <MAP NAME= name_image_map > <AREA SHAPE= form COORDS= coordinates HREF= URL > </MAP> Adding Usemap property to Image <IMG SRC= name_file_graphic USEMAP= #name_image_map > d) Image Map: A list of coordinates at an image that determines the boundary for one or more hotspots. i) Hotspot: An area on the image that functions as a link. Visitors can click on the hotspot and the link will be activated. (1) Three types of Hotspot Shapes: (a) Square: Represented as Rect. The coordinates for COORDS property is determined by two point couples, which are the corner points on the top- left corner and on the right- down corner. <AREA SHAPE= Rect COORDS= 261, 91, 339, 196 > (b) Circle: Represented as Circle. The COORDS value for the circle is determined by the centre and radius of the circle. The radius is calculated in pixel units. <AREA SHAPE= Circle COORDS= 220, 196, 40 > (c) Polygonal: Represented as Poly. Suitable for areas shaped other than a square and circle. The coordinates depend on the number of corners that make up the shape. <AREA SHAPE= Poly COORDS= 142, 21, 142, 78, 82, 78, 82, 197, 20, 197, 20, 21 > ii) To create image maps, you must open the image file with a graphics application and record its coordinates to create hotspots. This is time consuming and can be difficult. You can use several applications such as MapEdit, MapServe and Web Hotspot that is used specifically to create image maps. 4) Using Tables a) Two methods to insert tables into a website. It involves inserting either i) Text Tables: Contains only texts that are arranged in columns of the same size. A typewriter or fixed- width font is needed. <PRE> Table_Contents </PRE> ii) Graphical Tables: Allows you to insert elements such as colour, shading and border. (a) <TABLE> and is ends with the closing tag </TABLE>. (b) Each line is opened with the (table row) tag and is ended <TABLE BORDER= 1 > <TD> Cell One</TD> <TD>Cell Two</TD> <TD>Cell Three</TD> <TD>Cell Four</TD> <TD>Cell Five</TD> <TD>Cell Six</TD> </TABLE> Page 3

4 with the closing tag. (c) In each tag you need to insert the <TD> tag (table data). The <TD> tag marks the beginning of the column and insert </TD> to close the column (1) Table <TABLE> Tag Properties (a) BORDER: Used to display table lines. <TABLE BORDER = size > (b) CELLSPACING: Property that controls space between cells in a table. <TABLE CELLSPACING = size > (c) CELLPADDING: Determine the space between cell lines and text. <TABLE CELLPADDING = size > (d) ALIGN: Property that controls the position of alignment to; left, right, or center. <TABLE ALIGN = position >, <TD ALIGN = Center >ABC</TD> (e) WIDTH & HEIGHT: Controls the table dimensions. <TABLE WIDTH = width HEIGHT = height > (f) BGCOLOR: Control the background color of table. <TABLE BGCOLOUR = colour >, <TR BGCOLOUR = colour >, <TH BGCOLOUR = colour >, <TD BGCOLOUR = colour > (2) Spanning Cell are cells that comprise more than one column or row. There are two types of Spanning cells: (a) Row Span (b) Column Span Row Span <TABLE BORDER= 1 > <TD WIDTH= 100 >1</TD> <TD ROWSPAN= 3 >2 (ROWSPAN)</TD> <TD WIDTH = 100 >3</TD> <TD>4</TD> <TD>5</TD> <TD>6</TD> <TD>7</TD> </TABLE> Column Span <TABLE BORDER+ 1 > <TD WIDTH= 100 >1</TD> <TD WIDTH= 100 >2</TD> <TD WIDTH= 100 >3</TD> <TD COLSPAN= 3 >4</TD> <TD>5</TD> <TD>6</TD> <TD>7</TD> </TABLE> 5) Forms in Web Pages a) CGI (Common Gateway Interface) Script: Any application or set of that receive data from HTML documents for performing certain operations on that data i) CGI Encouraged the development of many web applications with database orientation such as: (1) Database access, E- commerce, Sending e- mail, Online forums, etc. etc. ii) CGI Scripts can be developed using: (1) C/C++, Apple Script, Perl, TLC, Visual Basic Form Element Input box Usage Accept / insert text Selection list Long lists b) Elements in an HTML Form: i) Input boxes allow you to add information in text or numbers. <INPUT TYPE= TEXT NAME= element_name SIZE= size MAXLENGTH= "maximum_characters VALUE= "initial_value"> Radio Button Check box Text area Submit and Reset button (1) NAME property is a must for INPUT tags, as its used in CGI identify the text element (2) SIZE property is to determine the width of the text box. Choose one option from a fixed list Check if an item is there or not Text that exceeds one line Either to send or cancel delivery and return to the original condition of the form ii) Selection List is a list box that allows the user to choose an item of choice using the mouse. (1) SIZE property allows you to display more than one item at a time. (2) MULTIPLE is meant to allow users to choose more than one item in the list. (a) One- by- one: Press the Ctrl button while clicking on the desired items. (b) Linked: Choose the first item, while pressing the Shift key, choose the last item. All the items between them will be automatically selected <SELECT NAME= "element_name SIZE= size MULTIPLE> <OPTION VALUE= "Item1_value">Item1 text</option> <OPTION VALUE="Item2_value">Item2 text</option>... </SELECT> Page 4

5 iii) Radio Button is a fixed list in button form. (1) NAME property is necessary for radio buttons (2) CHECKED property is set for the default option <INPUT TYPE= RADIO NAME= element_name VALUE= item1_value >Item1 text <INPUT TYPE= RADIO NAME= element_name VALUE= item2_value CHECKED>Item2 text iv) Check Box is a form element used to determine whether or not an item is there. (1) NAME property is needed for check box <INPUT TYPE= CHECKBOX NAME= element_name VALUE= item1_value >Item1 text <INPUT TYPE= CHECKBOX NAME= element_name VALUE= item2_value >Item2 text v) Text Area is a form element that allows users to insert text that exceeds one line. <TEXTAREA NAME= element_name ROWS= number_of_rows COLS= number_of_characters WRAP= type_of_wrap > Default Text</TEXTAREA> (1) COLS property refers to the number of characters that are permitted for each line (2) WRAP property determines how text will fill each line in the text area box vi) Hidden Field: <INPUT TYPE= HIDDEN NAME= element_name VALUE= hidden_value"> vii) Form Button: Does not store any information but executes operations when clicked (1) The syntax to run a programme is: <INPUT TYPE= BUTTON VALUE= Text on the button > (2) The syntax for submitting a form is: <INPUT TYPE= SUBMIT VALUE= Text on the button > (3) The syntax to reset info in a form is: <INPUT TYPE= RESET VALUE= Text on the button > c) Form Submission: <FORM ACTION= url METHOD= POST_or_GET > i) ACTION property is to determine the location of the CGI script that will process the form ii) METHOD property will determine how the web browser will send information to the CGI script (1) GET will place every form of information at the end of the CGI script URL. CGI script will then change the information at the end of the URL into text that will be processed. (2) POST method in a nutshell sends information as separate data streams. POST is safer and more popular as there are instances when GET may cause long information to be cropped. 6) Introduction to Scripts a) CGI (Common Gateway Interface) Script: Any application or set of that receive data from HTML documents for performing certain operations on that data. i) Advantages of Server- Side Scripting: (1) The programme can be fully controlled. (2) Most of the data needed by applications are real- time data. ii) Weakness of Server- Side Scripting: (1) Applications will rely wholly on the server. b) Advantages of Client- Side Scripting: i) Reduce the burden of processes that are performed by the server. ii) Reaction or output generated on the web browser becomes faster. c) Events are the result after an action is performed by the user. Page 5

6 7) Javascripts a) JavaScript: An example of a script language, consists of that can be executed, what differentiates it is it can be inserted into a HTML document. JavaScript is a subset of Java. i) document.write ( Hello World ) will display the text contained within (). ii) <!- - code - - > inserted to prevent display of code in unsupported browsers. b) Variables: Temporary spaces to store data where it will be used to run JavaScript programme. i) Rules for Variable Naming: (1) Variable names are case sensitive, and (2) Must begin with an alphabet or underscore ii) Two ways to Declare a Variable: (1) Using the keyword var: var intyear = value; (2) Without using the keyword var: intyear = value iii) Types of Variables: <HTML> <HEAD> </HEAD> <BODY> <script type="text/javascript"> <!- - // print hello world! document.write("hello World!") - - > </script> </BODY> </HTML> (1) Local Variable: Variables declared in a function, the variable can be accessed in that function only. (2) Global Variable: Variables declared outside function, all functions in programme can access that variable. c) Functions: contains a portion of the code that will be run by events or the call to the particular function. (1) alert( Hello World! ) Means that a text value; Hello World! has been sent to the function called alert. i) Functions with arguments: A function is created by declaring its name, value (argument), and as follows: ii) Functions that return a value: The keyword return will resend a value to the instruction calling the function. function function_name (argument1, argument2, etc) function total(x,y) result=x+y return result Calling the Function sum=total(4,1) b) Selective Control Structures: In JavaScript there are 3: i) if Instruction ii) if else instruction iii) switch instruction c) Looping Control Structures: i) While ii) do while iii) for if (condition) code to be run if condition is true while (condition) code to be run when condition is true if (condition) code to be run if condition is true else code to be run if condition is false do code to be run while (condition) switch (expression) case value1: code that is run if expression = value1 break case value2: code that is run if expression = value2 break default: code that is run if expression is neither value1 nor value2 for (initialization; condition; increment) code to be run Page 6

7 6) VBScripts a) VBScript: An alternative to JavaScript. It is the abbreviation for Microsoft Visual Basic Edition. It is a simplified version of the Visual Basic and Visual Basic for Application family of programming languages. i) Advantage of VBScript is its syntax is easier than JavaScript. ii) Weakness in VBScript is that older versions of web browsers or browsers other than Microsoft Internet Explorer may not be able to run VBScript properly <HTML> <HEAD> </HEAD> <BODY> <script type="text/vbscript"> <!- - print the text This is VBScript document.write( This is VBScript ) - - > </script> </BODY> </HTML> b) Variables: All types of variables in VBScript are in the variant type i) Rules for Variable Naming: (1) Must begin with an alphabet (2) Cannot contain a full stop punctuation; and (3) Cannot exceed 255 characters. ii) Declare a variable using the keywords Dim, Public or Private c) Functions: VBScript has two types of functions: i) Sub Functions: (1) Characteristics: (a) Begins with Sub ends with End Sub (b) Doesn t return a value, yet executes. (c) Can receive sent to it via arguments Sub sub_name () End Sub (d) If theres no arguments, () is still required (2) Call for Sub: Call sub_name ( VBScript", 3, etc), Call sub_name () ii) Functions of Function: (1) Characteristics (a) Begins with Function and End with End Function (b) Executes and can return a value Function function_name() function_name = return_value End Function Sub sub_name(argument1, argument2,etc) End Sub Function function_name (argument1,argument2,etc) function_name = return_value End Function (c) Can receive that are sent to it via arguments (d) If theres no arguments, () is still required (e) The desired value that is returned must be accumulated to the name of the function (2) Call for Function: variable = function_name(), msgbox Your name is & function_name() d) Selective Control Structures: i) if then ii) if then else iii) if then elseif iv) select case if i=7 Then msgbox July i=i+1 End if if i=1 then msgbox Right else msgbox left end if if pay= Cash then msgbox Payment Mode cash elseif pay= Visa then msgbox Payment Mode visa elseif pay=amex then msgbox Payment Mode American Express else msgbox No mode of payment end if select case pay case Cash msgbox Payment Mode cash case Visa" msgbox Payment Mode visa case AmEx msgbox Payment Mode American Express case Else msgbox No mode of payment end select Page 7

8 e) Looping Control Structures: i) For Next : Repeat a set of a few times, used when we know the no. of loops. ii) For Each Next : Run for each collection of items or each element in an array. Don t know no. of loops. You can use the keyword Exit if you wish to stop the loop. iii) Do Loop: program will run a set of as long as the condition is true. 7) XML Technology Do While i>12 code that will be run Loop For i=1 to 12 code that will be run Next dim Name(2) names(0)= Ahmad names(1)= Yosuf names(2)= Ismail For each x in Name document.write(x & <br> ) Next a) Extensible Mark- up Language (XML): Introduced in February, 1998, by. Like HTML, XML originated from XGML.. However, in XML there are no specific texts like HTML. On the other hand, you can create your own tag and define the structure of the document. b) Document Type Definition (DTD): lists the set elements in a document and the content of each element. i) DTD Standards: (1) Electronic Business XML (ebxml): set of specifications that enables business entities to perform their business activities and other deals via Internet (2) WeatherML: Global standard protocol for weather derivatives which is processed electronically. (3) Directory Service Markup Language (DRSS): Standard to prepare for directory enquiries, updating and operational results DTD File Saved as Note.dtd <!DOCTYPE note [ <!ELEMENT note (to,from,heading,body)> <!ELEMENT to (#PCDATA)> <!ELEMENT from (#PCDATA)> <!ELEMENT heading (#PCDATA)> <!ELEMENT body (#PCDATA)> ]> XML File Saved as MyNotes.xml in the same folder <?xml version="1.0" encoding="utf- 8"?> <!DOCTYPE note SYSTEM "Note.dtd"> <note> <to>tove</to> <from>jani</from> <heading>reminder</heading> <body>don't forget me this weekend!</body> </note> Page 8

Html basics Course Outline

Html basics Course Outline Html basics Course Outline Description Learn the essential skills you will need to create your web pages with HTML. Topics include: adding text any hyperlinks, images and backgrounds, lists, tables, and

More information

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS MOST TAGS CLASS Divides tags into groups for applying styles 202 ID Identifies a specific tag 201 STYLE Applies a style locally 200 TITLE Adds tool tips to elements 181 Identifies the HTML version

More information

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 WEB TECHNOLOGIES A COMPUTER SCIENCE PERSPECTIVE CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 Modified by Ahmed Sallam Based on original slides by Jeffrey C. Jackson reserved. 0-13-185603-0 HTML HELLO WORLD! Document

More information

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 1/6/2019 12:28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 CATALOG INFORMATION Dept and Nbr: CS 50A Title: WEB DEVELOPMENT 1 Full Title: Web Development 1 Last Reviewed:

More information

HTML BEGINNING TAGS. HTML Structure <html> <head> <title> </title> </head> <body> Web page content </body> </html>

HTML BEGINNING TAGS. HTML Structure <html> <head> <title> </title> </head> <body> Web page content </body> </html> HTML BEGINNING TAGS HTML Structure Web page content Structure tags: Tags used to give structure to the document.

More information

HTML What is HTML Hyper Text Markup Language is a computer based language used to create WebPages.

HTML What is HTML Hyper Text Markup Language is a computer based language used to create WebPages. vinsri76@yahoo.com +965-69300304 HTML What is HTML Hyper Text Markup Language is a computer based language used to create WebPages. Name Two text Editor which are used to create HTML page. They are: Notepad

More information

Namma Kalvi.

Namma Kalvi. Namma Kalvi COMPUTER APPLICATION PUBLIC EXAM - 2019 ANSWER KEY PART - A I Choose the correct answer 10x1=10 1. c. warm booting 6. d. All the above 11. d..css 2. c. Giga 7. d. 2 12. b. F5 3. b. VGA connector

More information

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

Unit 5 Web Publishing Systems Page 1 of 13 Part 4 HTML Part 4 Unit 5 Web Publishing Systems Page 1 of 13 Part 4 HTML 4.01 Version: 4.01 Transitional Hypertext Markup Language is the coding behind web publishing. In this tutorial, basic knowledge of HTML will be covered

More information

1.264 Lecture 12. HTML Introduction to FrontPage

1.264 Lecture 12. HTML Introduction to FrontPage 1.264 Lecture 12 HTML Introduction to FrontPage HTML Subset of Structured Generalized Markup Language (SGML), a document description language SGML is ISO standard Current version of HTML is version 4.01

More information

Summary 4/5. (contains info about the html)

Summary 4/5. (contains info about the html) Summary Tag Info Version Attributes Comment 4/5

More information

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

A HTML document has two sections 1) HEAD section and 2) BODY section A HTML file is saved with.html or.htm extension HTML Website is a collection of web pages on a particular topic, or of a organization, individual, etc. It is stored on a computer on Internet called Web Server, WWW stands for World Wide Web, also called

More information

ITL Public School Final Term ( ) Date: 16 Feb 2015 Class: XI Multimedia and Web Technology (067) Time:3 hrs M.M: 70

ITL Public School Final Term ( ) Date: 16 Feb 2015 Class: XI Multimedia and Web Technology (067) Time:3 hrs M.M: 70 ITL Public School Final Term (04-5) Date: 6 Feb 05 Class: XI Multimedia and Web Technology (067) Time:3 hrs M.M: 70 General Instructions:. Marks for all the questions are mentioned with the questions..

More information

As we design and build out our HTML pages, there are some basics that we may follow for each page, site, and application.

As we design and build out our HTML pages, there are some basics that we may follow for each page, site, and application. Extra notes - Client-side Design and Development Dr Nick Hayward HTML - Basics A brief introduction to some of the basics of HTML. Contents Intro element add some metadata define a base address

More information

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space.

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space. HTML Summary Structure All of the following are containers. Structure Contains the entire web page. Contains information

More information

HTTP and HTML. We will use HTML as a frontend to our webapplications, therefore a basic knowledge of HTML is required, especially in forms.

HTTP and HTML. We will use HTML as a frontend to our webapplications, therefore a basic knowledge of HTML is required, especially in forms. HTTP and HTML We will use HTML as a frontend to our webapplications, therefore a basic knowledge of HTML is required, especially in forms. HTTP and HTML 28 January 2008 1 When the browser and the server

More information

CSI 3140 WWW Structures, Techniques and Standards. Markup Languages: XHTML 1.0

CSI 3140 WWW Structures, Techniques and Standards. Markup Languages: XHTML 1.0 CSI 3140 WWW Structures, Techniques and Standards Markup Languages: XHTML 1.0 HTML Hello World! Document Type Declaration Document Instance Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson

More information

D B M G. Introduction to databases. Web programming: the HTML language. Web programming. The HTML Politecnico di Torino 1

D B M G. Introduction to databases. Web programming: the HTML language. Web programming. The HTML Politecnico di Torino 1 Web programming The HTML language The HTML language Basic concepts User interfaces in HTML Forms Tables Passing parameters stored in forms @2017 Politecnico di Torino 1 Basic concepts HTML: HyperText Markup

More information

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21 Table of Contents Chapter 1 Getting Started with HTML 5 1 Introduction to HTML 5... 2 New API... 2 New Structure... 3 New Markup Elements and Attributes... 3 New Form Elements and Attributes... 4 Geolocation...

More information

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

Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM Advanced Internet Technology Lab. Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM 5049 Advanced Internet Technology Lab Lab # 1 Eng. Haneen El-masry February, 2015 Objective To be familiar with

More information

HTML. LBSC 690: Jordan Boyd-Graber. October 1, LBSC 690: Jordan Boyd-Graber () HTML October 1, / 29

HTML. LBSC 690: Jordan Boyd-Graber. October 1, LBSC 690: Jordan Boyd-Graber () HTML October 1, / 29 HTML LBSC 690: Jordan Boyd-Graber October 1, 2012 LBSC 690: Jordan Boyd-Graber () HTML October 1, 2012 1 / 29 Goals Review Assignment 1 Assignment 2 and Midterm Hands on HTML LBSC 690: Jordan Boyd-Graber

More information

COMS W3101: SCRIPTING LANGUAGES: JAVASCRIPT (FALL 2017)

COMS W3101: SCRIPTING LANGUAGES: JAVASCRIPT (FALL 2017) COMS W3101: SCRIPTING LANGUAGES: JAVASCRIPT (FALL 2017) RAMANA ISUKAPALLI RAMANA@CS.COLUMBIA.EDU 1 LECTURE-1 Course overview See http://www.cs.columbia.edu/~ramana Overview of HTML Formatting, headings,

More information

CSC Web Programming. Introduction to HTML

CSC Web Programming. Introduction to HTML CSC 242 - Web Programming Introduction to HTML Semantic Markup The purpose of HTML is to add meaning and structure to the content HTML is not intended for presentation, that is the job of CSS When marking

More information

Certified HTML5 Developer VS-1029

Certified HTML5 Developer VS-1029 VS-1029 Certified HTML5 Developer Certification Code VS-1029 HTML5 Developer Certification enables candidates to develop websites and web based applications which are having an increased demand in the

More information

I-5 Internet Applications

I-5 Internet Applications I-5 Internet Applications After completion of this unit, you should be able to understand and code a webpage that includes pictures, sounds, color, a table, a cursor trail, hypertext, and hyperlinks. Assignments:

More information

COPYRIGHTED MATERIAL. Contents. Chapter 1: Creating Structured Documents 1

COPYRIGHTED MATERIAL. Contents. Chapter 1: Creating Structured Documents 1 59313ftoc.qxd:WroxPro 3/22/08 2:31 PM Page xi Introduction xxiii Chapter 1: Creating Structured Documents 1 A Web of Structured Documents 1 Introducing XHTML 2 Core Elements and Attributes 9 The

More information

Chapter 4 Notes. Creating Tables in a Website

Chapter 4 Notes. Creating Tables in a Website Chapter 4 Notes Creating Tables in a Website Project for Chapter 4 Statewide Realty Web Site Chapter Objectives Define table elements Describe the steps used to plan, design, and code a table Create a

More information

CSC Web Technologies, Spring HTML Review

CSC Web Technologies, Spring HTML Review CSC 342 - Web Technologies, Spring 2017 HTML Review HTML elements content : is an opening tag : is a closing tag element: is the name of the element attribute:

More information

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

Web Design 101. What is HTML? HTML Tags. Web Browsers. <!DOCTYPE html> <html> <body> <h1>my First Heading</h1> <p>my first paragraph. What is HTML? Web Design 101 HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language à A markup language is a set of markup tags The tags describe

More information

INFS 2150 / 7150 Intro to Web Development / HTML Programming

INFS 2150 / 7150 Intro to Web Development / HTML Programming XP INFS 2150 / 7150 Intro to Web Development / HTML Programming Working with Graphics in a Web Page 1 Objectives Learn about different image formats Control the placement and appearance of images on a

More information

HTML HTML. Chris Seddon CRS Enterprises Ltd 1

HTML HTML. Chris Seddon CRS Enterprises Ltd 1 Chris Seddon seddon-software@keme.co.uk 2000-12 CRS Enterprises Ltd 1 2000-12 CRS Enterprises Ltd 2 Reference Sites W3C W3C w3schools DevGuru Aptana GotAPI Dog http://www.w3.org/ http://www.w3schools.com

More information

STD 7 th Paper 1 FA 4

STD 7 th Paper 1 FA 4 STD 7 th Paper 1 FA 4 Choose the correct option from the following 1 HTML is a. A Data base B Word Processor C Language D None 2 is a popular text editor in MS window A Notepad B MS Excel C MS Outlook

More information

Programmazione Web a.a. 2017/2018 HTML5

Programmazione Web a.a. 2017/2018 HTML5 Programmazione Web a.a. 2017/2018 HTML5 PhD Ing.Antonino Raucea antonino.raucea@dieei.unict.it 1 Introduzione HTML HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text

More information

Creating Web Pages. Getting Started

Creating Web Pages. Getting Started Creating Web Pages Getting Started Overview What Web Pages Are How Web Pages are Formatted Putting Graphics on Web Pages How Web Pages are Linked Linking to other Files What Web Pages Are Web Pages combine

More information

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

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) Learning Objectives (2 of 2) Horizontal Rule Element Web Development & Design Foundations with HTML5 Ninth Edition Chapter 4 Visual Elements and Graphics Learning Objectives (1 of 2) 4.1 Create and format lines and borders on web pages 4.2 Apply the image

More information

More HTML. Images and links. Tables and lists. <h1>running in the family</h1> <h2>tonight 9pm BBC One</h2>

More HTML. Images and links. Tables and lists. <h1>running in the family</h1> <h2>tonight 9pm BBC One</h2> More HTML Images and links Tables and lists running in the family tonight 9pm BBC One hurdles legend Colin Jackson traces his family tree to Jamaica in Who Do You Think You Are?

More information

CITS1231 Midterm Test (A total of 45 marks)

CITS1231 Midterm Test (A total of 45 marks) Computer Science and Software Engineering CITS1231 Midterm Test 2010 CRICOS Provider Code: 00126G CITS1231 Midterm Test (A total of 45 marks) Full Name: Username: Student Number: Signature: True/False

More information

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

Web Development & Design Foundations with XHTML. Chapter 4 Key Concepts Web Development & Design Foundations with XHTML Chapter 4 Key Concepts Learning Outcomes In this chapter, you will learn to: Create and format lines and borders on Web pages Decide when to use graphics

More information

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Structuring Documents for the Web 1

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Structuring Documents for the Web 1 Introduction Chapter 1: Structuring Documents for the Web 1 A Web of Structured Documents 1 Introducing HTML and XHTML 2 Tags and Elements 4 Separating Heads from Bodies 5 Attributes Tell Us About Elements

More information

1/27/2013. Outline. Adding images to your site. Images and Objects INTRODUCTION TO WEB DEVELOPMENT AND HTML

1/27/2013. Outline. Adding images to your site. Images and Objects INTRODUCTION TO WEB DEVELOPMENT AND HTML Outline INTRODUCTION TO WEB DEVELOPMENT AND HTML Images and Objects: Adding images to your site Adding Objects with Using Images as Links Image Maps Exercise Lecture 05 - Spring 2013 Adding images

More information

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

HTML. Mohammed Alhessi M.Sc. Geomatics Engineering. Internet GIS Technologies كلية اآلداب - قسم الجغرافيا نظم المعلومات الجغرافية HTML Mohammed Alhessi M.Sc. Geomatics Engineering Wednesday, February 18, 2015 Eng. Mohammed Alhessi 1 W3Schools Main Reference: http://www.w3schools.com/ 2 What is HTML? HTML is a markup language for

More information

What You Will Learn Today

What You Will Learn Today CS101 Lecture 03: The World Wide Web and HTML Aaron Stevens 23 January 2011 1 What You Will Learn Today Is it the Internet or the World Wide Web? What s the difference? What is the encoding scheme behind

More information

introduction to XHTML

introduction to XHTML introduction to XHTML XHTML stands for Extensible HyperText Markup Language and is based on HTML 4.0, incorporating XML. Due to this fusion the mark up language will remain compatible with existing browsers

More information

HTML & XHTML Tag Quick Reference

HTML & XHTML Tag Quick Reference HTML & XHTML Tag Quick Reference This reference notes some of the most commonly used HTML and XHTML tags. It is not, nor is it intended to be, a comprehensive list of available tags. Details regarding

More information

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

Introduction to HTML. SSE 3200 Web-based Services. Michigan Technological University Nilufer Onder Introduction to HTML SSE 3200 Web-based Services Michigan Technological University Nilufer Onder What is HTML? Acronym for: HyperText Markup Language HyperText refers to text that can initiate jumps to

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

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

HTML. Hypertext Markup Language. Code used to create web pages Chapter 4 Web 135 HTML Hypertext Markup Language Code used to create web pages HTML Tags Two angle brackets For example: calhoun High Tells web browser ho to display page contents Enter with

More information

Class 7. Choose the correct answer:

Class 7. Choose the correct answer: Class 7 Choose the correct answer: 1. The most popular services of the Internet is a) Network b) WWW c) HTML d) None of these 2. The language used for designing web page is a) BASIC b) JAVA c) HTML d)

More information

CSC 121 Computers and Scientific Thinking

CSC 121 Computers and Scientific Thinking CSC 121 Computers and Scientific Thinking Fall 2005 HTML and Web Pages 1 HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language

More information

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel.

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel. Adobe Dreamweaver CS6 Project 3 guide How to create forms You can use forms to interact with or gather information from site visitors. With forms, visitors can provide feedback, sign a guest book, take

More information

A Brief Introduction to HTML

A Brief Introduction to HTML A P P E N D I X HTML SuMMAry J A Brief Introduction to HTML A web page is written in a language called HTML (Hypertext Markup Language). Like Java code, HTML code is made up of text that follows certain

More information

Name Related Elements Type Default Depr. DTD Comment

Name Related Elements Type Default Depr. DTD Comment Legend: Deprecated, Loose DTD, Frameset DTD Name Related Elements Type Default Depr. DTD Comment abbr TD, TH %Text; accept-charset FORM %Charsets; accept FORM, INPUT %ContentTypes; abbreviation for header

More information

WTAD Text Editors for HTML. Text Editors: Kate HTML. (HyperText Markup Language)

WTAD Text Editors for HTML. Text Editors: Kate HTML. (HyperText Markup Language) HTML (Hyper Text Markup Language) WTAD 3 languages all web developers must learn: 1. HTML to define the content of web pages 2. CSS to specify the layout of web pages 3. JavaScript to program the behaviour

More information

Question No: 2 ( Marks: 1 ) - Please choose one Which of these is the correct HTML code for creating a reset button?

Question No: 2 ( Marks: 1 ) - Please choose one Which of these is the correct HTML code for creating a reset button? Question No: 1 ( Marks: 1 ) - Please choose one In datalink layer, data packets are placed inside > Data frames page 6 > Data boxes > Data streams > None of these Question No: 2 ( Marks: 1 ) - Please choose

More information

WTAD. Unit -1 Introduction to HTML (HyperText Markup Language)

WTAD. Unit -1 Introduction to HTML (HyperText Markup Language) WTAD Unit -1 Introduction to HTML (HyperText Markup Language) HTML (Hyper Text Markup Language) 3 languages all web developers must learn: 1. HTML to define the content of web pages 2. CSS to specify the

More information

How to set up a local root folder and site structure

How to set up a local root folder and site structure Activity 2.1 guide How to set up a local root folder and site structure The first thing to do when creating a new website with Adobe Dreamweaver CS3 is to define a site and identify a root folder where

More information

Chapter 5. Introduction to XHTML: Part 2

Chapter 5. Introduction to XHTML: Part 2 Chapter 5. Introduction to XHTML: Part 2 Tables Attributes of the table element: border: width of the table border in pixels (0 makes all lines invisible) align: horizontal alignment (left, center, or

More information

LING 408/508: Computational Techniques for Linguists. Lecture 14

LING 408/508: Computational Techniques for Linguists. Lecture 14 LING 408/508: Computational Techniques for Linguists Lecture 14 Administrivia Homework 5 has been graded Last Time: Browsers are powerful Who that John knows does he not like? html + javascript + SVG Client-side

More information

Bixby Public Schools Course Essential Elements Grade: Desktop Publishing

Bixby Public Schools Course Essential Elements Grade: Desktop Publishing Content Objective) applicable) Desktop Publishing Weeks 1-6 10-12 1. Create and edit a publication. 2. Design a newsletter. 3. Publish a tri-fold brochure 1-1 Start and quit Publisher 1-2 Describe the

More information

Building Web Based Application using HTML

Building Web Based Application using HTML Introduction to Hypertext Building Web Based Application using HTML HTML: Hypertext Markup Language Hypertext links within and among Web documents connect one document to another Origins of HTML HTML is

More information

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

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML specifies formatting within a page using tags in its

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

HTML Tags <A></A> <A HREF="http://www.cnn.com"> CNN </A> HREF

HTML Tags <A></A> <A HREF=http://www.cnn.com> CNN </A> HREF HTML Tags Tag Either HREF or NAME is mandatory Definition and Attributes The A tag is used for links and anchors. The tags go on either side of the link like this: the link

More information

Hyper Text Markup Language HTML: A Tutorial

Hyper Text Markup Language HTML: A Tutorial Hyper Text Markup Language HTML: A Tutorial Ahmed Othman Eltahawey December 21, 2016 The World Wide Web (WWW) is an information space where documents and other web resources are located. Web is identified

More information

Advanced Web Programming C2. Basic Web Technologies

Advanced Web Programming C2. Basic Web Technologies Politehnica University of Timisoara Advanced Web Programming C2. Basic Web Technologies 2013 UPT-AC Assoc.Prof.Dr. Dan Pescaru HTML Originally developed by Tim Berners-Lee in 1990 at CERN (Conseil Européen

More information

Certified HTML Designer VS-1027

Certified HTML Designer VS-1027 VS-1027 Certification Code VS-1027 Certified HTML Designer Certified HTML Designer HTML Designer Certification allows organizations to easily develop website and other web based applications which are

More information

Selected Sections of Applied Informatics

Selected Sections of Applied Informatics Selected Sections of Applied Informatics M.Sc. Marcin Koniak koniakm@wt.pw.edu.pl http://www2.wt.pw.edu.pl/~a.czerepicki Based on lecture: Dr inż. Andrzej Czerepicki a.czerepicki@wt.pw.edu.pl 2018 HTML

More information

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

CSE 3. Marking Up with HTML. Comics Updates Shortcut(s)/Tip(s) of the Day Google Earth/Google Maps ssh Anti-Spyware CSE 3 Comics Updates Shortcut(s)/Tip(s) of the Day Google Earth/Google Maps ssh Anti-Spyware 1-1 4-1 Chapter 4: Marking Up With HTML: A Hypertext Markup Language Primer Fluency with Information Technology

More information

WEB PAGE DESIGN. Structure

WEB PAGE DESIGN. Structure UNIT 4 WEB PAGE DESIGN Structure 4.0 Introduction 4.1 Objectives 4.2 Basics of web page design using HTML 4.2.1 Method to create and view the web pages in browser 4.2.2 HTML Basic tags 4.2.3 Image tags

More information

Chapter 1 Self Test. LATIHAN BAB 1. tjetjeprb{at}gmail{dot}com. webdesign/favorites.html :// / / / that houses that information. structure?

Chapter 1 Self Test. LATIHAN BAB 1. tjetjeprb{at}gmail{dot}com. webdesign/favorites.html :// / / / that houses that information. structure? LATIHAN BAB 1 Chapter 1 Self Test 1. What is a web browser? 2. What does HTML stand for? 3. Identify the various parts of the following URL: http://www.mcgrawhill.com/books/ webdesign/favorites.html ://

More information

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

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

More information

COMS W3101: SCRIPTING LANGUAGES: JAVASCRIPT (FALL 2018)

COMS W3101: SCRIPTING LANGUAGES: JAVASCRIPT (FALL 2018) COMS W3101: SCRIPTING LANGUAGES: JAVASCRIPT (FALL 2018) RAMANA ISUKAPALLI RAMANA@CS.COLUMBIA.EDU 1 LECTURE-1 Course overview See http://www.cs.columbia.edu/~ramana Overview of HTML Formatting, headings,

More information

Dreamweaver CS6. Level 3. Topics Working with Text, List, and tables Working with Images

Dreamweaver CS6. Level 3. Topics Working with Text, List, and tables Working with Images Level 3 Topics Working with Text, List, and tables Working with Images Changing the Copy/ Paste Prefences in Dreamweaver You can set special paste preferences as default options when using Edit > Paste

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

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

5/17/2009. Marking Up with HTML. An HTML Web Page File. Tags for Bold, Italic, and underline. Structuring Documents Chapter 4: Marking Up With HTML: A Hypertext Markup Language Primer Marking Up with HTML Fluency with Information Technology Third Edition by Lawrence Snyder Tags describe how a web page should look Formatting

More information

HTML. HTML Evolution

HTML. HTML Evolution Overview stands for HyperText Markup Language. Structured text with explicit markup denoted within < and > delimiters. Not what-you-see-is-what-you-get (WYSIWYG) like MS word. Similar to other text markup

More information

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10 CONTENTS Chapter 1 Introduction to Dreamweaver CS3 1 About Dreamweaver CS3 Interface...4 Title Bar... 4 Menu Bar... 4 Insert Bar... 5 Document Toolbar... 5 Coding Toolbar... 6 Document Window... 7 Properties

More information

INFS 2150 / 7150 Intro to Web Development / HTML Programming

INFS 2150 / 7150 Intro to Web Development / HTML Programming XP Objectives INFS 2150 / 7150 Intro to Web Development / HTML Programming Designing a Web Page with Tables Create a text table Create a table using the , , and tags Create table headers

More information

COMPUTER APPLICATIONS IN BUSINESS FYBMS SEM II

COMPUTER APPLICATIONS IN BUSINESS FYBMS SEM II CHAPTER 1: HTML 1. What is HTML? Define its structure. a. HTML [Hypertext Markup Language] is the main markup language for creating web pages and other information that can be displayed in a web browser.

More information

Introduction to Web Technologies

Introduction to Web Technologies Introduction to Web Technologies James Curran and Tara Murphy 16th April, 2009 The Internet CGI Web services HTML and CSS 2 The Internet is a network of networks ˆ The Internet is the descendant of ARPANET

More information

Creating Web Pages Using HTML

Creating Web Pages Using HTML Creating Web Pages Using HTML HTML Commands Commands are called tags Each tag is surrounded by Some tags need ending tags containing / Tags are not case sensitive, but for future compatibility, use

More information

2.1 Origins and Evolution of HTML

2.1 Origins and Evolution of HTML 2.1 Origins and Evolution of HTML - HTML was defined with SGML - Original intent of HTML: General layout of documents that could be displayed by a wide variety of computers - Recent versions: - HTML 4.0

More information

SAMPLE QUESTION PAPER

SAMPLE QUESTION PAPER SAMPLE QUESTION PAPER Subject: FOUNDATION OF INFMATION TECHNOLOGY (FIT) Code: 165 CLASS:-X (2017-18) Time: 2 ½ Hrs. M.M.:40 General Instructions: (i) The sample question paper consists of 16 questions.

More information

Class X Foundation of Information Technology (Code: 165) Sample Question Paper

Class X Foundation of Information Technology (Code: 165) Sample Question Paper Class X Foundation of Information Technology (Code: 165) Sample Question Paper 2018-19 Time: 2 ½ Hrs. M.M.:40 General Instructions: (i) The sample question paper consists of 16 questions. (ii) All questions

More information

Web Programming Pre-01A Web Programming Technologies. Aryo Pinandito, ST, M.MT

Web Programming Pre-01A Web Programming Technologies. Aryo Pinandito, ST, M.MT Web Programming Pre-01A Web Programming Technologies Aryo Pinandito, ST, M.MT Document Formats: The evolution of HTML HTML HyperText Markup Language Primary document type for the web Transmitted using

More information

Page Content. Inserting Text To add text to your document, you can type the text directly or use Cut or Copy and Paste or Paste Special.

Page Content. Inserting Text To add text to your document, you can type the text directly or use Cut or Copy and Paste or Paste Special. This section describes how to add content to your pages including text, Microsoft Office documents, images, Flash, and other media content. Inserting Text To add text to your document, you can type the

More information

IMY 110 Theme 7 HTML Tables

IMY 110 Theme 7 HTML Tables IMY 110 Theme 7 HTML Tables 1. HTML Tables 1.1. Tables The HTML table model allows authors to arrange data into rows and columns of cells, just as in word processing software such as Microsoft Word. It

More information

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

(Refer Slide Time: 01:41) (Refer Slide Time: 01:42) Internet Technology Prof. Indranil Sengupta Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture No #14 HTML -Part II We continue with our discussion on html.

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

HTML Element A pair of tags and the content these include are known as an element

HTML Element A pair of tags and the content these include are known as an element HTML Tags HTML tags are used to mark-up HTML elements. HTML tags are surrounded by the two characters < and >. The surrounding characters are called angle brackets HTML tags are not case sensitive,

More information

Go.Web Style Guide. Oct. 16, Hackensack Ave Hackensack, NJ GoAmerica, Inc. All rights reserved.

Go.Web Style Guide. Oct. 16, Hackensack Ave Hackensack, NJ GoAmerica, Inc. All rights reserved. Go.Web Style Guide Oct. 16, 2000 www.goamerica.net 2000 GoAmerica, Inc. All rights reserved. 401 Hackensack Ave Hackensack, NJ 07601 888 462 4600 Go.Web Style Guide 2 Introduction Go.Web is GoAmerica s

More information

IT153 Midterm Study Guide

IT153 Midterm Study Guide IT153 Midterm Study Guide These are facts about the Adobe Dreamweaver CS4 Application. If you know these facts, you should be able to do well on your midterm. Dreamweaver users work in the Document window

More information

IT430- E-COMMERCE Solved MCQ(S) From Midterm Papers (1 TO 22 Lectures) BY Arslan Arshad

IT430- E-COMMERCE Solved MCQ(S) From Midterm Papers (1 TO 22 Lectures) BY Arslan Arshad IT430- E-COMMERCE Solved MCQ(S) From Midterm Papers (1 TO 22 Lectures) BY Arslan Arshad OCT 21,2016 BS110401050 BS110401050@vu.edu.pk Arslan.arshad01@gmail.com AKMP01 IT430 - E-COMMERCE Midterm Papers

More information

DREAMWEAVER QUICK START TABLE OF CONTENT

DREAMWEAVER QUICK START TABLE OF CONTENT DREAMWEAVER QUICK START TABLE OF CONTENT Web Design Review 2 Understanding the World Wide Web... 2 Web Browsers... 2 How Browsers Display Web pages... 3 The Web Process at Sacramento State... 4 Web Server

More information

Dreamweaver MX Overview. Maintaining a Web Site

Dreamweaver MX Overview. Maintaining a Web Site Dreamweaver MX Overview Maintaining a Web Site... 1 The Process... 1 Filenames... 1 Starting Dreamweaver... 2 Uploading and Downloading Files... 6 Check In and Check Out Files... 6 Editing Pages in Dreamweaver...

More information

A Balanced Introduction to Computer Science, 3/E

A Balanced Introduction to Computer Science, 3/E A Balanced Introduction to Computer Science, 3/E David Reed, Creighton University 2011 Pearson Prentice Hall ISBN 978-0-13-216675-1 Chapter 2 HTML and Web Pages 1 HTML & Web Pages recall: a Web page is

More information

Web Publishing Basics I

Web Publishing Basics I Web Publishing Basics I Jeff Pankin Information Services and Technology Contents Course Objectives... 2 Creating a Web Page with HTML... 3 What is Dreamweaver?... 3 What is HTML?... 3 What are the basic

More information

Chapter 5 Images. Presented by Thomas Powell. Slides adopted from HTML & XHTML: The Complete Reference, 4th Edition 2003 Thomas A.

Chapter 5 Images. Presented by Thomas Powell. Slides adopted from HTML & XHTML: The Complete Reference, 4th Edition 2003 Thomas A. Chapter 5 Images Presented by Thomas Powell Slides adopted from HTML & XHTML: The Complete Reference, 4th Edition 2003 Thomas A. Powell Image Introduction Images are good for illustrating ideas showing

More information

HTML WORKSHEET Explain HTML HEAD Tag Title Tag BASEFONT Tag

HTML WORKSHEET Explain HTML HEAD Tag Title Tag BASEFONT Tag vinsri76@yahoo.com HTML WORKSHEET Explain HTML HEAD Tag Title Tag BASEFONT Tag 1. 2. Text Editor 1. 2. Graphic Editor Name & Explain Attribute of Body Tags 1. 2. 1. 2. 3. 4. Name & Explain Attribute of

More information

HTML and CSS COURSE SYLLABUS

HTML and CSS COURSE SYLLABUS HTML and CSS COURSE SYLLABUS Overview: HTML and CSS go hand in hand for developing flexible, attractively and user friendly websites. HTML (Hyper Text Markup Language) is used to show content on the page

More information

Adobe Dreamweaver CS5/6: Learning the Tools

Adobe Dreamweaver CS5/6: Learning the Tools Adobe Dreamweaver CS5/6: Learning the Tools Dreamweaver is an HTML (Hypertext Markup Language) editor, authoring tool, and Web site management tool. Dreamweaver is a WYSIWYG (what you see is what you get)

More information