Institute for Satellite & Software Applications

Size: px
Start display at page:

Download "Institute for Satellite & Software Applications"

Transcription

1 Visual Programming 1 Section 2 Institute for Satellite and Software Applications HTML Tutorial Phase I Training Manual Compiled by the Website Development Team Institute for Satellite & Software Applications

2 Table of Contents Section Page 1. Objectives 3 2. Programs to start with HTML Getting started with HTML Four Basic HTML Tags Creating your first web page 6 6. Headings Paragraphs and Line breaks Comments in HTML Text Formatting Fonts Images Background Images and background color Lists Hyperlinks Tables Design Templates 27 2

3 1. Objectives This skills transfer is aimed at beginners, or people completely new to HTML. The aim is to deliver a concise course from which to derive a basic grounding in HTML. The following is some of the aspects that will be covered: What is HTML? Formatting our text Changing the color and appearance of text Including comments in our code Changing the background of the page Using images Using links Using lists Using tables What is HTML? HTML is a computer language used to allow website creation. It is relatively easy to learn, with the basics being accessible to most people in one sitting; and quite powerful in what it allows you to create HTML stands for Hyper Text Markup Language An HTML file is a text file containing small mark-up tags The mark-up tags tell the Web browser how to display the page An HTML file must have an htm or html file extension An HTML file can be created using a simple text editor How does it work? HTML consists of a series of short codes typed into a text-file by the site author these are the tags. The text is then saved as a html file, and viewed through a browser, like Internet Explorer or Mozilla Firefox 3

4 2. Programs required to start with HTML 1. You will need a text editor of your choice. If you re using Windows it ll be Notepad or WordPad How to Open Notepad: Click on Start Programs Accessories Notepad 2. You will need a web browser. A browser is the program that makes it possible to browse and open websites i.e Internet Explorer or Mozilla Firefox. It is not important which browser you use. The most common is Microsoft Internet Explorer. But there are others such as Opera and Mozilla Firefox and they can all be used or 4

5 3. Getting started HTML code consists of "tags" that look like this: <html> All of the tags use the angle brackets "<" and ">" ("less than" and "greater than") and have some name or letter inside of the brackets. Most HTML tags also have a "closing tag" </> You can use either upper case or lower case in HTML. What is HTML Tags? The tags are what separate normal text from HTML code. You might know them as the words between the <triangle-brackets>. They allow things like images and tables to be inserted on your page. Different tags will perform different functions. The tags themselves don t appear when you view your page through a browser, but their effects do. The simplest tags do nothing more than apply formatting to some text, like this: <b>these words will be bold</b>, and these will not. In the example above, the <b> tags were wrapped around some text, and their effect will be that the contained text will be bolded when viewed through a web browser. 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 normally come in pairs like <b> and </b> The first tag in a pair is the start tag, the second tag is the end tag The text between the start and end tags is the element content HTML tags are not case sensitive, <b> means the same as <B> 4. The Four BASIC HTML Tags Explained <html> this tag identifies a html document, all web pages (html documents are web pages) must have this tag first (or almost first). <head> this signifies the start of a section of the html document called the "head". This section doesn't show up in the browser but can contain info that the browser can use. In our example the head section will contain the title only. Header information is not displayed in the browser window. <title> this is the name of the web page. It doesn't show up in the page itself but in the title bar of the window that holds the web page, <body> this is the beginning of the section that shows up in the web page. Inside this section we will write the web page. 5

6 5. Creating your First Web page. Open Notepad (or your text editor).you should see a completely blank page. Type in the text below. Example HTML code: Type in the following text: <html> <head> <title>title of page</title> </head> <body> <h1>this is my first homepage.</h1> <b>this text is bold</b> </body> </html> 6

7 Saving the file Once you have finished, go to the "File" menu and click on "Save As". This will prompt you to create a name for your file. In the box, type in mypage.html. At the bottom of the prompt you should see a space that says "Save as Type". The default is.txt, so you will need to change it. Click on the down arrow on the right side of the input box. You should be able to highlight All Files(*.*). Click on this to make the change. You should see something similar to the picture below: Save the file as "mypage.html". Remember to select the All Files option Open your file in a Browser Now you will want to use your web browser to view the file you just created. 1. Start your Internet browser 2. Go to the "File" menu in your web browser. 3. Look for an option that says "Open", "Open Page", "Open File", or a similar phrase. 4. Click this option, a dialog box will appear and you will be able to browse for your file and open it from there 5. Locate the HTML file you just created - "mypage.html" - select it and click "Open". 6. Click OK, and the browser will display the page. 7

8 Alternatively, Using the file explorer, go to the directory were the mypage.html file was saved and double click on that file. (Its much easier this way) This is how your page will be displayed in your browser. 8

9 Example Explained The first tag in your HTML document is <html>. This tag tells your browser that this is the start of an HTML document. The last tag in your document is </html>. This tag tells your browser that this is the end of the HTML document. The text between the <head> tag and the </head> tag is header information. Header information is not displayed in the browser window. The text between the <title> tags is the title of your document. The title is displayed in your browser's caption. The text between the <body> tags is the text that will be displayed in your browser. The text between the <b> and </b> tags will be displayed in a bold font. HTML element: <b>this text is bold</b> The HTML element starts with a start tag: <b> The content of the HTML element is: This text is bold The HTML element ends with an end tag: </b> The purpose of the <b> tag is to define an HTML element that should be displayed as bold.!" # 9

10 Your name should appear on the title bar of the page Basic HTML Tags Tag Description <html> Defines an HTML document <body> Defines the document's body <h1> to <h6> Defines header 1 to header 6 <p> Defines a paragraph <br> Inserts a single line break <hr> Defines a horizontal rule <!--> Defines a comment 6. Headings Headings are defined with the <h1> to <h6> tags. <h1> defines the largest heading. <h6> defines the smallest heading. HTML automatically adds an extra blank line before and after a heading. <h1>this is a heading1</h1> <h2>this is a heading2</h2> <h3>this is a heading3</h3> <h4>this is a heading4</h4> <h5>this is a heading5</h5> <h6>this is a heading6</h6> 10

11 $ %& " # '! "!!% (!! ) This is what your file should look like when opening it in a Browser 7. Paragraphs & Line Breaks. Paragraphs are defined with the <p> tag. <p>this is a paragraph</p> <p>this is another paragraph</p> HTML automatically adds an extra blank line before and after a paragraph. 11

12 The Line Break (<br>) tag is used when you want to end a line, but don't want to start a new paragraph. The <br> tag forces a line break wherever you place it. <p>this <br> is a para<br>graph with line breaks</p> The <br> tag is an empty tag. It has no closing tag. $ *& % +, -,.-!* 8. Comments in HTML The comment tag is used to insert a comment in the HTML source code. The browser will ignore a comment. You can use comments to explain your code, which can help you when you edit the source code at a later date. <!-- This is a comment --> Note that you need an exclamation point after the opening bracket, but not before the closing bracket. Example <!- -My comments will be inserted here--> 12

13 This example demonstrates how to write an address in an HTML document. <html> <body> PO Box 88<br> Highrising<br> Grabouw<br> 7160 </body> </html> $ /& #! /!! 0!!, -, - ) 9. Text Formatting Tags Tag <b> <big> <em> <i> <small> <strong> <sub> <sup> <ins> <del> <strike> <u> Description Defines bold text Defines big text Defines emphasized text / italics Defines italic text Defines small text Defines strong text Defines subscripted text Defines superscripted text Defines inserted text Defines deleted text Strike through underline 13

14 Special Characters: Result Description Entity Name Entity Number non-breaking space < less than < < > greater than > > & ampersand & & " quotation mark " " ' apostrophe &apos; (does not work in IE) &#39; Other Commonly used Special Characters : Result Description Entity Name Entity Number cent pound yen copyright registered trademark multiplication division &divide $ 1& 2!/ " * % /!1 Tag Attributes Tags can have attributes. Attributes provide additional information to an HTML element. The following tag defines an HTML font: <font>. With an added size attribute, you can tell the browser that the text should have a specified size: <font size="2"> Attributes always come in name/value pairs like this: name="value". Attributes are always specified in the start tag of an HTML element. Attributes and attribute values are also caseinsensitive. However, the World Wide Web Consortium (W3C) recommends lowercase attributes/attribute values in their HTML 4 recommendation, and XHTML demands lowercase attributes/attribute values. 14

15 10. Fonts 10.1 Size attribute Font sizes range from 1 the smallest to 7 the largest. The default font size is 3. To change the font size <font size = 6 > This is font size six </font> 10.2 Color attribute. The color attribute for the <font> tag sets the colour of the enclosed text. The value for the font colour can be expressed in 2 ways. 1) RGB components with the colour value expressed as a 6 digit hexadecimal number ranging from # being black to #FFFFFF which is white. 2 digits for each colour. 2) Alternatively, you can set the font colour using any one of the standard colour names <font color = red > This is red </font> $ 3& 2!1 " *!4 %% /!4/! 3 15

16 $ 5& "! 4 8 *! 2 9! : 9!! 11. Images. The <img> tag lets you reference and insert a graphics image into an HTML document. The src attribute The src attribute indicates the source / location of the image. For example, <img src = "pics/tux.gif"> inserts an image tux.jpg from the pics directory. Image alignment attribute Method I There are two image alignment attributes: left and right, 16

17 <img src = "pics/isa.jpg" align = right > aligns the image to the middle of the base line text. Method II <center > <img src = "pics/isa.jpg"></center> Method III <div align= center ><img src = "pics/isa.jpg"></div> Border attribute Use the border attribute to create a border around the image. <img src = "pics/issa.jpg" align = middle border = 4 > Border = 0 removes the border from the image. Height and width attributes These specify the height and width of the image. Used often to resize images <img src = "pics/issa.jpg" align=middle" border= 4 width="200" height="150"> 12. Background color and background Images The attributes that control the document background colour, text colour and the document margins are used with the body tag. <body bgcolor="#ff0000"> sets the background colour to red <body bgcolor= green > sets the background colour to green. <body background="pics/coat.jpg"> inserts image logo.jpg from the pics directory as the background image. 17

18 To set the text colour of the document to blue < body text ="blue"> To set a background image and text <body background = "pics/coat.jpg" text ="blue"> $ ;&!"# $%&# # ' " & ( "%")" *+, )- 18

19 13. Lists Unordered Lists An unordered list is a list of items. The list items are marked with bullets (typically small black circles). An unordered list starts with the <ul> tag. Each list item starts with the <li> tag. <ul> <li>nelspruit</li> <li>skukuza</li> <li>witbank</li> <li>bushbuckridge </li> </ul> Here is how it looks in a browser: Nelspruit Skukuza Witbank Bushbuckridge Inside a list item you can put paragraphs, line breaks, images, links, other lists, etc. Ordered Lists An ordered list is also a list of items. The list items are marked with numbers. An ordered list starts with the <ol> tag. Each list item starts with the <li> tag. <ol> <li>nelspruit</li> <li>skukuza</li> <li>witbank</li> <li>bushbuckridge </li></ol> Here is how it looks in a browser: 1. Nelspruit 2. Skukuza 3. Witbank 4. Bushbuckridge Inside a list item you can put paragraphs, line breaks, images, links, other lists, etc. $ < = &">? 0 *! < 19

20 Identify at least 4 HTML elements used in the below picture. E.g. images, formatting tags etc. 20

21 14. HYPERLINKS They're what made the web The Web. The ability to link from one document to another is one of the most central features of HTML. Hypertext can link to: A place in your current page, Another WWW website - anywhere! and may be comprised of text or images. Hypertext links are enclosed within the tagset : <a href="location">insert a name for your link here</a>. Between the anchor open/close tags, place any text or image which is to be "hyper"...that is, which when clicked will cause the browser to jump to the linked location. The text between the tags will automatically be underlined To define a location name within a web page, use the form: <a name="location"></a>... with no space or text between the tag and its closing. Place the tag just above any line in your html to which you'd like to go to. HTML <a> tag The <a> tag defines an anchor. An anchor can be used in two ways: 1. To create a link to another document by using the href attribute 2. To create a bookmark inside a document, by using the name or id attribute Example Source <p>linking to New Page: <a href="newpage.html">new Page</a> </p> <p> Opening New Page in a new browser window: <a href="newpage.html" target="_blank">new Page</a> </p> Output Linking to New Page: New Page Opening New Page in a new browser window: New Page 21

22 $ "> = &%>? %" 0 9 # 9 9 %% When you create a link you can target a page by a name you have assigned it. TARGET has four predefined values, which can be used as if certain windows and frames already have names without you having to assign them: Target Explained "_blank" "_parent" "_self" opens the new document in a new window. used in the situation where a frameset file is nested inside another frameset puts the new document in the same window and frame as the current document Links From Your Page This is what's known as a mailto: command. It follows the same coding as the hyperlink. What this format does is place a link on your page on which people can click to send you an . Example <a href="mailto:edwina@domain.com">click here to send an </a> Links to websites / documents Government website : <a href= > Government Website </a> Acrobat Documents : <a href= filename.pdf > HTML Manual </a> Word Documents: <a href= filename.doc > HTML Manual </a> Excel Documents: <a href= filename.xsl > HTML Manual </a> 22

23 Images as a link Example <html> <body> <p> You can also use an image as a link: <p></p> <a href="red.html"> <img border="0" src="pics/button.jpg" > </a> </p> </body> </html> This is how it will look in your Browser: $ ">! # 8 9! # 99 $ "" 5 # 8 9; ; #

24 15. Tables To design professional looking pages, you ll need to organize your information in tables. Tables are basically boxes that can contain text, colors, and graphics. Most often you cant see the tables themselves; you can only see their contents. Tables are defined with the <table> tag. A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with the <td> tag). The letters td stands for "table data," which is the content of a data cell. A data cell can contain text, images, lists, paragraphs, forms, horizontal rules, tables, etc. <table border="1"> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </tr> </table> How it looks in a browser: row 1, cell 1 row 1, cell 2 row 2, cell 1 row 2, cell 2 Table Tags Tag Description <table> Defines a table <th> Defines a table header <tr> Defines a table row <td> Defines a table cell <caption> Defines a table caption <colgroup> Defines groups of table columns <col> Defines the attribute values for one or more columns in a table <thead> Defines a table head <tbody> Defines a table body <tfoot> Defines a table footer 24

25 CREATING A TABLE Let's begin with a simple and common use for tables, i.e. a list of staff members. Suppose we have four people whose names we want on the list. The data could be arranged in a table like this: <table> <tr> <td>1</td> <td>ivy Dibakoane</td> </tr> </table> Which gives us this table: 1 Ivy Dibakoane This table uses the basic three tags all tables must have: <TABLE> creates the table. Most of the overall properties of the table are defined here, such as if it has borders and what is the table's background color. <TR > (Table Row) defines each row of the table. <TD> (Table Data) defines each cell of the table. The first modification we'll make to this table is to add borders. Borders will help us see how the table is laid out. <table width="100%" border="1"> <tr> <td> </td> </tr> </table> $ "% = &%1? 0 " % A "> > B A " 8" # 4A*% 0!! "% Your table should look like this: Name Surname 25

26 $ "* = &%1? 0 % " A "> > B A " 8" 7 % 0!! "% Your table should look like this: Home About us CCCC0!! )CCCC 16.DESIGN TEMPLATES Tables are mostly used to create design templates for formatting menu s, placing LOGO s and web information in a controllable and structured manner. Below are examples for horizontal and vertical menu s that can be placed in a table to make a template. $ "/ 4! 9 Example for horizontal menu Table: <html> <head> <title>horizontal Table</title> </head> <body> <table width="100%" border="1"> <tr> <td>menu 1</td> <td>menu 2</td> <td>menu 3</td> <td>menu 4</td> <td>menu 5</td> </tr> </table> </body> </html> This is what your Table should look like. Menu 1 Menu 2 Menu 3 Menu 4 Menu 5 26

27 $ "1 ' 0 " 1 A "> > B A " 8 2 ":2 % "1./ %!! ) Example for vertical menu Table: <html> <head> <title>vertical Table</title> </head> <body> <table width="50%" border="1"> <tr> <td><img src= pics/logo.jpg > </td> </tr> <tr> <td>menu 1</td> </tr> <tr> <td>><a href= ex2.html > <img src= pics/exer2.jpg > </a> </td> </tr> <tr> <td>menu 3</td> </tr> <tr> <td>menu 4</td> </tr> <tr> <td>>><a href= ex5.html > Menu 5</a></td> </tr> <tr> <td><p>picture</p> <p> </p> <p> </p></td> </tr> </table> </body> </html> This is what your Table should look like: Menu 1 Menu 3 Menu 4 Menu 5 Picture $ "3 ' 0 3 " A "> > B A " "3 8", % ) 8!!! 9, % )./ %!! ) 27

28 $ "5 ' 0 * " A "> > B A " 8" * =,-DE,.-? 8% 4 "1 8* 3 =,-DE,.-? "5 This is what your Table should look like Menu 1 Menu 2 Menu 3 Menu 4 $ "; = &">? 0 " % A "> > B A " " A%>B % A;>B 8" "3!"; This is what your Table should look like Menu 1 Menu 3 Menu 4 Menu 5 Picture 28

29 $ "< ' 9 :9 9! "; =?!! 7 9 % : 1 5 ; ">.! 8 "< $ %> 2 9!"<! 0)"0!% % "! % "< 9 %( 9)! 1:3:;"> Having completed all the exercises successfully, you are now ready to create your own website. 29

30 $ %" 0! F / F 4!! :$ :# : : :$ :2 :@ :0 ( :G :: HH / # ")%%%" + # ""% 30

31 17. Additional Enhancements Scripting languages, marquees and Java Applets were invented specifically for use in web browsers to make websites more dynamic. On its own, HTML is capable of outputting moreor-less static pages. Once you load them up your view doesn't change much until you click a link to go to a new page. Adding Scripts to your code allows you to change how the document looks completely, from changing text, to changing colours, to changing the options available in a drop-down list 17.1 Marquee <MARQUEE...> creates a scrolling display. It can work well for announcements. <marquee> Welcome to my webpage </marquee> The basic use of <MARQUEE...> is simple. Put most any kind of markup between <MARQUEE...> and </MARQUEE>. You can even use an image in the marquee <marquee> Hi There! <img src="pics/mountain.jpg" height=33 width=82 > </ marquee > By default <MARQUEE...> has a WIDTH of 100%, so it might appear as a block level. However, if you set the width to something smaller than 100%, you might notice that the marquee is in line with the surrounding text. <MARQUEE WIDTH="20%"> Welcome to my webpage </MARQUEE> WIDTH: how wide the marquee is HEIGHT: how tall the marquee is DIRECTION: which direction the marquee should scroll BEHAVIOR: what type of scrolling SCROLLAMOUNT: how far to jump SCROLLDELAY: how long to delay between each jump BGCOLOR: background color HSPACE: horizontal space around the marquee VSPACE: vertical space around the marquee Exercise 22: open any webpage of your preivous exercises and add a marquee. 31

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence Web Development Owen Sacco ICS2205/ICS2230 Web Intelligence Introduction Client-Side scripting involves using programming technologies to build web pages and applications that are run on the client (i.e.

More information

How To Write A Web Page In Html

How To Write A Web Page In Html HTML Basics Welcome to HTML Basics. This workshop leads you through the basics of Hyper Text Markup Language (HTML). HTML is the building block for web pages. You will learn to use HTML to author an HTML

More information

Contents. Downloading the Data Files... 2. Centering Page Elements... 6

Contents. Downloading the Data Files... 2. Centering Page Elements... 6 Creating a Web Page Using HTML Part 1: Creating the Basic Structure of the Web Site INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 2.0 Winter 2010 Contents Introduction...

More information

Website Development Komodo Editor and HTML Intro

Website Development Komodo Editor and HTML Intro Website Development Komodo Editor and HTML Intro Introduction In this Assignment we will cover: o Use of the editor that will be used for the Website Development and Javascript Programming sections of

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

CREATING WEB PAGES USING HTML INTRODUCTION

CREATING WEB PAGES USING HTML INTRODUCTION CREATING WEB PAGES USING HTML INTRODUCTION Web Page Creation Using HTML: Introduction 1. Getting Ready What Software is Needed FourSteps to Follow 2. What Will Be On a Page Technical, Content, & Visual

More information

Getting Started with KompoZer

Getting Started with KompoZer Getting Started with KompoZer Contents Web Publishing with KompoZer... 1 Objectives... 1 UNIX computer account... 1 Resources for learning more about WWW and HTML... 1 Introduction... 2 Publishing files

More information

Module 6 Web Page Concept and Design: Getting a Web Page Up and Running

Module 6 Web Page Concept and Design: Getting a Web Page Up and Running Module 6 Web Page Concept and Design: Getting a Web Page Up and Running Lesson 3 Creating Web Pages Using HTML UNESCO EIPICT M6. LESSON 3 1 Rationale Librarians need to learn how to plan, design and create

More information

MS Word 2007 practical notes

MS Word 2007 practical notes MS Word 2007 practical notes Contents Opening Microsoft Word 2007 in the practical room... 4 Screen Layout... 4 The Microsoft Office Button... 4 The Ribbon... 5 Quick Access Toolbar... 5 Moving in the

More information

Introduction to Web Development

Introduction to Web Development Introduction to Web Development Week 2 - HTML, CSS and PHP Dr. Paul Talaga 487 Rhodes paul.talaga@uc.edu ACM Lecture Series University of Cincinnati, OH October 16, 2012 1 / 1 HTML Syntax For Example:

More information

Web page design in 7 days!

Web page design in 7 days! Learnem Group presents: Web page design in 7 days! Lessons 1-7 By: Siamak Sarmady Start Here Copyright Notice : 2000,2001 Siamak Sarmady and Learnem Group. All rights reserved. This text is written to

More information

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide CONTENTM WEBSITE MANAGEMENT SYSTEM Getting Started Guide Table of Contents CONTENTM WEBSITE MANAGEMENT SYSTEM... 1 GETTING TO KNOW YOUR SITE...5 PAGE STRUCTURE...5 Templates...5 Menus...5 Content Areas...5

More information

Using Adobe Dreamweaver CS4 (10.0)

Using Adobe Dreamweaver CS4 (10.0) Getting Started Before you begin create a folder on your desktop called DreamweaverTraining This is where you will save your pages. Inside of the DreamweaverTraining folder, create another folder called

More information

Learnem.com. Web Development Course Series. Learn em. HTML Web Design in 7 days! By: Siamak Sarmady

Learnem.com. Web Development Course Series. Learn em. HTML Web Design in 7 days! By: Siamak Sarmady Learnem.com Web Development Course Series Learn em HTML Web Design in 7 days! By: Siamak Sarmady L E A R N E M W E B D E V E L O P M E N T C O U R S E S E R I E S HTML Web Design in 7 Days! Ver. 2.08.02

More information

Joomla! 2.5.x Training Manual

Joomla! 2.5.x Training Manual Joomla! 2.5.x Training Manual Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several tutorials

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

Creating Web Pages with Microsoft FrontPage

Creating Web Pages with Microsoft FrontPage Creating Web Pages with Microsoft FrontPage 1. Page Properties 1.1 Basic page information Choose File Properties. Type the name of the Title of the page, for example Template. And then click OK. Short

More information

FACULTY OF COMMERCE, OSMANIA UNIVERSITY

FACULTY OF COMMERCE, OSMANIA UNIVERSITY Commerce Lab - Practical Question Bank FACULTY OF COMMERCE, OSMANIA UNIVERSITY -------------------------------------------------------------------------------------- B.Com (Computers and Computer Applications)

More information

Garfield Public Schools Fine & Practical Arts Curriculum Web Design

Garfield Public Schools Fine & Practical Arts Curriculum Web Design Garfield Public Schools Fine & Practical Arts Curriculum Web Design (Half-Year) 2.5 Credits Course Description This course provides students with basic knowledge of HTML and CSS to create websites and

More information

Dreamweaver. Introduction to Editing Web Pages

Dreamweaver. Introduction to Editing Web Pages Dreamweaver Introduction to Editing Web Pages WORKSHOP DESCRIPTION... 1 Overview 1 Prerequisites 1 Objectives 1 INTRODUCTION TO DREAMWEAVER... 1 Document Window 3 Toolbar 3 Insert Panel 4 Properties Panel

More information

Learnem.com. Web Development Course Series. Quickly Learn. Web Design Using HTML. By: Siamak Sarmady

Learnem.com. Web Development Course Series. Quickly Learn. Web Design Using HTML. By: Siamak Sarmady Learnem.com Web Development Course Series Quickly Learn Web Design Using HTML By: Siamak Sarmady L E A R N E M W E B D E V E L O P M E N T C O U R S E S E R I E S Quickly Learn Web Design Using HTML Ver.

More information

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move WORD PROCESSING In this session, we will explain some of the basics of word processing. The following are the outlines: 1. Start Microsoft Word 11. Edit the Document cut & move 2. Describe the Word Screen

More information

NURSING 3225 NURSING INQUIRY WEB SITE DEVELOPMENT GUIDE BOOK

NURSING 3225 NURSING INQUIRY WEB SITE DEVELOPMENT GUIDE BOOK Nursing 3225 Web Dev Manual Page 1 NURSING 3225 NURSING INQUIRY WEB SITE DEVELOPMENT GUIDE BOOK Nursing 3225 Web Dev Manual Page 2 N3225: Nursing Inquiry Student Created Group Website Addresses (1 of 2)

More information

Quick Start Guide To: Using the Sage E-marketing Online Editor

Quick Start Guide To: Using the Sage E-marketing Online Editor Quick Start Guide To: Using the Sage E-marketing Online Editor When you first enter the Sage E-marketing online editor, you will see two tabs on the left-hand side of the screen: Content Editor and Customize

More information

Drupal Training Guide

Drupal Training Guide Drupal Training Guide Getting Started Drupal Information page on the IT site: http://it.santarosa.edu/drupal On this page is information about Drupal sign up, what Drupal is, which is a content management

More information

ANATOMY OF A WEB PAGE...

ANATOMY OF A WEB PAGE... Web Design Contents INTRODUCTION... 4 WHAT YOU WILL LEARN... 4 ABOUT THE HOME AND LEARN WEB DESIGN SOFTWARE... 5 INSTALLING THE SOFTWARE... 6 WEB COURSE FILES... 6 ANATOMY OF A WEB PAGE... 7 WHAT IS A

More information

Caldes CM12: Content Management Software Introduction v1.9

Caldes CM12: Content Management Software Introduction v1.9 Caldes CM12: Content Management Software Introduction v1.9 Enterprise Version: If you are using Express, please contact us. Background Information This manual assumes that you have some basic knowledge

More information

Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc. 949-654-3890 mraymond@luminys.com www.luminys.com

Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc. 949-654-3890 mraymond@luminys.com www.luminys.com Essential HTML & CSS for WordPress Mark Raymond Luminys, Inc. 949-654-3890 mraymond@luminys.com www.luminys.com HTML: Hypertext Markup Language HTML is a specification that defines how pages are created

More information

Contents. Launching FrontPage... 3. Working with the FrontPage Interface... 3 View Options... 4 The Folders List... 5 The Page View Frame...

Contents. Launching FrontPage... 3. Working with the FrontPage Interface... 3 View Options... 4 The Folders List... 5 The Page View Frame... Using Microsoft Office 2003 Introduction to FrontPage Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.0 Fall 2005 Contents Launching FrontPage... 3 Working with

More information

Adobe Dreamweaver Student Organizations Publishing Details Getting Started Basic Web Page Tutorial For Student Organizations at Dickinson College *

Adobe Dreamweaver Student Organizations Publishing Details Getting Started Basic Web Page Tutorial For Student Organizations at Dickinson College * Adobe Dreamweaver Student Organizations Publishing Details Getting Started Basic Web Page Tutorial For Student Organizations at Dickinson College * Some Student Organizations are on our web server called

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time.

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time. MS Word, Part 3 & 4 Office 2007 Line Numbering Sometimes it can be helpful to have every line numbered. That way, if someone else is reviewing your document they can tell you exactly which lines they have

More information

WebCT 4.x: HTML Editor

WebCT 4.x: HTML Editor Competencies After reading this document, you will be able to: Employ the HTML Editor capabilities to create and publish content. About HTML Editor The HTML editor provides word-processor-like features

More information

Introduction to XHTML. 2010, Robert K. Moniot 1

Introduction to XHTML. 2010, Robert K. Moniot 1 Chapter 4 Introduction to XHTML 2010, Robert K. Moniot 1 OBJECTIVES In this chapter, you will learn: Characteristics of XHTML vs. older HTML. How to write XHTML to create web pages: Controlling document

More information

Google Sites: Site Creation and Home Page Design

Google Sites: Site Creation and Home Page Design Google Sites: Site Creation and Home Page Design This is the second tutorial in the Google Sites series. You should already have your site set up. You should know its URL and your Google Sites Login and

More information

Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University

Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University Web Design Basics Cindy Royal, Ph.D. Associate Professor Texas State University HTML and CSS HTML stands for Hypertext Markup Language. It is the main language of the Web. While there are other languages

More information

FOUNDATION OF INFORMATION TECHNOLOGY Class-X (TERM II)

FOUNDATION OF INFORMATION TECHNOLOGY Class-X (TERM II) Sample Question Paper FOUNDATION OF INFORMATION TECHNOLOGY Class-X (TERM II) TIME : 3 Hrs MM : 80. SECTION A 1. Fill in the blanks: [10] 1.1 is the extension of an XML file. 1.2 attribute is used with

More information

Microsoft Word 2010 Tutorial

Microsoft Word 2010 Tutorial 1 Microsoft Word 2010 Tutorial Microsoft Word 2010 is a word-processing program, designed to help you create professional-quality documents. With the finest documentformatting tools, Word helps you organize

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

3. Add and delete a cover page...7 Add a cover page... 7 Delete a cover page... 7

3. Add and delete a cover page...7 Add a cover page... 7 Delete a cover page... 7 Microsoft Word: Advanced Features for Publication, Collaboration, and Instruction For your MAC (Word 2011) Presented by: Karen Gray (kagray@vt.edu) Word Help: http://mac2.microsoft.com/help/office/14/en-

More information

Dreamweaver CS4 Day 2 Creating a Website using Div Tags, CSS, and Templates

Dreamweaver CS4 Day 2 Creating a Website using Div Tags, CSS, and Templates Dreamweaver CS4 Day 2 Creating a Website using Div Tags, CSS, and Templates What is a DIV tag? First, let s recall that HTML is a markup language. Markup provides structure and order to a page. For example,

More information

Basic Excel Handbook

Basic Excel Handbook 2 5 2 7 1 1 0 4 3 9 8 1 Basic Excel Handbook Version 3.6 May 6, 2008 Contents Contents... 1 Part I: Background Information...3 About This Handbook... 4 Excel Terminology... 5 Excel Terminology (cont.)...

More information

HTML and CSS. Elliot Davies. April 10th, 2013. ed37@st-andrews.ac.uk

HTML and CSS. Elliot Davies. April 10th, 2013. ed37@st-andrews.ac.uk HTML and CSS Elliot Davies ed37@st-andrews.ac.uk April 10th, 2013 In this talk An introduction to HTML, the language of web development Using HTML to create simple web pages Styling web pages using CSS

More information

Personal Portfolios on Blackboard

Personal Portfolios on Blackboard Personal Portfolios on Blackboard This handout has four parts: 1. Creating Personal Portfolios p. 2-11 2. Creating Personal Artifacts p. 12-17 3. Sharing Personal Portfolios p. 18-22 4. Downloading Personal

More information

Microsoft PowerPoint 2010 Computer Jeopardy Tutorial

Microsoft PowerPoint 2010 Computer Jeopardy Tutorial Microsoft PowerPoint 2010 Computer Jeopardy Tutorial 1. Open up Microsoft PowerPoint 2010. 2. Before you begin, save your file to your H drive. Click File > Save As. Under the header that says Organize

More information

HOW TO USE THIS GUIDE

HOW TO USE THIS GUIDE HOW TO USE THIS GUIDE This guide provides step-by-step instructions for each exercise. Anything that you are supposed to type or select is noted with various types and colors. WHEN YOU SEE THIS Click Help

More information

Umbraco v4 Editors Manual

Umbraco v4 Editors Manual Umbraco v4 Editors Manual Produced by the Umbraco Community Umbraco // The Friendly CMS Contents 1 Introduction... 3 2 Getting Started with Umbraco... 4 2.1 Logging On... 4 2.2 The Edit Mode Interface...

More information

Basic tutorial for Dreamweaver CS5

Basic tutorial for Dreamweaver CS5 Basic tutorial for Dreamweaver CS5 Creating a New Website: When you first open up Dreamweaver, a welcome screen introduces the user to some basic options to start creating websites. If you re going to

More information

Microsoft Office PowerPoint 2013

Microsoft Office PowerPoint 2013 Microsoft Office PowerPoint 2013 Navigating the PowerPoint 2013 Environment The Ribbon: The ribbon is where you will access a majority of the commands you will use to create and develop your presentation.

More information

The Web Web page Links 16-3

The Web Web page Links 16-3 Chapter Goals Compare and contrast the Internet and the World Wide Web Describe general Web processing Write basic HTML documents Describe several specific HTML tags and their purposes 16-1 Chapter Goals

More information

How To Use Dreamweaver With Your Computer Or Your Computer (Or Your Computer) Or Your Phone Or Tablet (Or A Computer)

How To Use Dreamweaver With Your Computer Or Your Computer (Or Your Computer) Or Your Phone Or Tablet (Or A Computer) ITS Training Introduction to Web Development with Dreamweaver In this Workshop In this workshop you will be introduced to HTML basics and using Dreamweaver to create and edit web files. You will learn

More information

Web Portal User Guide. Version 6.0

Web Portal User Guide. Version 6.0 Web Portal User Guide Version 6.0 2013 Pitney Bowes Software Inc. All rights reserved. This document may contain confidential and proprietary information belonging to Pitney Bowes Inc. and/or its subsidiaries

More information

General Electric Foundation Computer Center. FrontPage 2003: The Basics

General Electric Foundation Computer Center. FrontPage 2003: The Basics General Electric Foundation Computer Center FrontPage 2003: The Basics September 30, 2004 Alternative Format Statement This publication is available in alternative media upon request. Statement of Non-discrimination

More information

Quick Guide to the Cascade Server Content Management System (CMS)

Quick Guide to the Cascade Server Content Management System (CMS) Quick Guide to the Cascade Server Content Management System (CMS) Waubonsee Community College Cascade Server Content Administration January 2011 page 1 of 11 Table of Contents Requirements...3 Logging

More information

Microsoft Word 2010 Basics

Microsoft Word 2010 Basics Microsoft Word 2010 Basics 1. Start Word if the Word 2007 icon is not on the desktop: a. Click Start>Programs>Microsoft Office>Microsoft Word 2007 b. The Ribbon- seen across the top of Microsoft Word.

More information

Developing Website Using Tools

Developing Website Using Tools 7 Developing Website Using Tools 7.1 INTRODUCTION A number of Software Packages are available in market for creating a website. Among popular softwares are Dreamweaver, Microsoft FrontPage and Flash. These

More information

Redback Solutions. Visionscape Manual

Redback Solutions. Visionscape Manual Redback Solutions Visionscape Manual Updated 31/05/2013 1 Copyright 2013 Redback Solutions Pty Ltd. All rights reserved. The Visionscape Content Management System (CMS) may not be copied, reproduced or

More information

7 th Annual LiveText Collaboration Conference. Advanced Document Authoring

7 th Annual LiveText Collaboration Conference. Advanced Document Authoring 7 th Annual LiveText Collaboration Conference Advanced Document Authoring Page of S. La Grange Road, nd Floor, La Grange, IL 6055-455 -866-LiveText (-866-548-3839) edu-solutions@livetext.com Page 3 of

More information

IAS Web Development using Dreamweaver CS4

IAS Web Development using Dreamweaver CS4 IAS Web Development using Dreamweaver CS4 Information Technology Group Institute for Advanced Study Einstein Drive Princeton, NJ 08540 609 734 8044 * helpdesk@ias.edu Information Technology Group [2] Institute

More information

HTML Fundamentals IN THIS APPENDIX

HTML Fundamentals IN THIS APPENDIX 13_0672328437_AppA.qxd 10/24/05 11:29 AM Page 223 A HTML Fundamentals IN THIS APPENDIX Plain Text Documents and HTML Tags Understanding the Overall HTML Document Structure HTML Structural Elements Within

More information

Creating Personal Web Sites Using SharePoint Designer 2007

Creating Personal Web Sites Using SharePoint Designer 2007 Creating Personal Web Sites Using SharePoint Designer 2007 Faculty Workshop May 12 th & 13 th, 2009 Overview Create Pictures Home Page: INDEX.htm Other Pages Links from Home Page to Other Pages Prepare

More information

Mura CMS. (Content Management System) Content Manager Guide

Mura CMS. (Content Management System) Content Manager Guide Mura CMS (Content Management System) Content Manager Guide Table of Contents Table of Contents 1. LOGGING IN...1 2. SITE MANAGER...2 3. ADDING CONTENT (Pages, Folders, etc.)...6 4. WORKING WITH IMAGES...15

More information

Content Management System User Guide

Content Management System User Guide CWD Clark Web Development Ltd Content Management System User Guide Version 1.0 1 Introduction... 3 What is a content management system?... 3 Browser requirements... 3 Logging in... 3 Page module... 6 List

More information

Help on Icons and Drop-down Options in Document Editor

Help on Icons and Drop-down Options in Document Editor Page 1 of 5 Exact Synergy Enterprise Help on Icons and Drop-down Options in Document Editor Introduction The following table provides descriptions on the icons and drop-down options that are available

More information

New Perspectives on Creating Web Pages with HTML. Considerations for Text and Graphical Tables. A Graphical Table. Using Fixed-Width Fonts

New Perspectives on Creating Web Pages with HTML. Considerations for Text and Graphical Tables. A Graphical Table. Using Fixed-Width Fonts A Text Table New Perspectives on Creating Web Pages with HTML This figure shows a text table. Tutorial 4: Designing a Web Page with Tables 1 2 A Graphical Table Considerations for Text and Graphical Tables

More information

-SoftChalk LessonBuilder-

-SoftChalk LessonBuilder- -SoftChalk LessonBuilder- SoftChalk is a powerful web lesson editor that lets you easily create engaging, interactive web lessons for your e-learning classroom. It allows you to create and edit content

More information

HTML Lesson 7. Your assignment:

HTML Lesson 7. Your assignment: HTML Lesson 7 Tables are one of the biggest tools Web developers use to present data wherever they want data to go on the page. Like spreadsheets, rows go across (left to right) and columns go up and down.

More information

UCL INFORMATION SERVICES DIVISION INFORMATION SYSTEMS. Silva. Introduction to Silva. Document No. IS-130

UCL INFORMATION SERVICES DIVISION INFORMATION SYSTEMS. Silva. Introduction to Silva. Document No. IS-130 UCL INFORMATION SERVICES DIVISION INFORMATION SYSTEMS Silva Introduction to Silva Document No. IS-130 Contents What is Silva?... 1 Requesting a website / Web page(s) in Silva 1 Building the site and making

More information

Mastering the JangoMail EditLive HTML Editor

Mastering the JangoMail EditLive HTML Editor JangoMail Tutorial Mastering the JangoMail EditLive HTML Editor With JangoMail, you have the option to use our built-in WYSIWYG HTML Editors to compose and send your message. Note: Please disable any pop

More information

Please select one of the topics below.

Please select one of the topics below. Thanks for choosing WYSIWYG Web Builder! In this section we will give a short introduction to Web Builder so you can start building your web site in (almost) no time. Please select one of the topics below.

More information

Microsoft Word 2013 Tutorial

Microsoft Word 2013 Tutorial Microsoft Word 2013 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

How to Use Swiftpage for Microsoft Outlook

How to Use Swiftpage for Microsoft Outlook How to Use Swiftpage for Microsoft Outlook 1 Table of Contents Basics of the Swiftpage for Microsoft Outlook Integration.. 3 How to Install Swiftpage for Microsoft Outlook and Set Up Your Account...4 The

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 University of North Carolina at Chapel Hill Libraries Carrboro Cybrary Chapel Hill Public Library Durham County Public Library DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites

More information

[D YOUVILLE COLLEGE OUCAMPUS WEB CONTENT MANAGEMENT SYSTEM TRAINING] June 11, 2014

[D YOUVILLE COLLEGE OUCAMPUS WEB CONTENT MANAGEMENT SYSTEM TRAINING] June 11, 2014 MANAGEMENT SYSTEM TRAINING] June 11, 2014 What is OU Campus? OU Campus is a content management system used by D Youville College on www.dyc.edu. It is an easy-to-learn tool for updating Web pages from

More information

Creating Accessible Word Documents

Creating Accessible Word Documents Center for Faculty Development and Support Creating Accessible Word Documents With Microsoft Word 2008 for Macintosh CREATING ACCESSIBLE WORD DOCUMENTS 3 Overview 3 Learning Objectives 3 Prerequisites

More information

Jadu Content Management Systems Web Publishing Guide. Table of Contents (click on chapter titles to navigate to a specific chapter)

Jadu Content Management Systems Web Publishing Guide. Table of Contents (click on chapter titles to navigate to a specific chapter) Jadu Content Management Systems Web Publishing Guide Table of Contents (click on chapter titles to navigate to a specific chapter) Jadu Guidelines, Glossary, Tips, URL to Log In & How to Log Out... 2 Landing

More information

Introduction to Web Design Curriculum Sample

Introduction to Web Design Curriculum Sample Introduction to Web Design Curriculum Sample Thank you for evaluating our curriculum pack for your school! We have assembled what we believe to be the finest collection of materials anywhere to teach basic

More information

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Contents Microsoft Office Interface... 4 File Ribbon Tab... 5 Microsoft Office Quick Access Toolbar... 6 Appearance

More information

CSE 3. Marking Up with HTML. Tags for Bold, Italic, and underline. Structuring Documents. An HTML Web Page File

CSE 3. Marking Up with HTML. Tags for Bold, Italic, and underline. Structuring Documents. An HTML Web Page File CSE 3 Comics Updates Shortcut(s)/Tip(s) of the Day Google Earth/Google Maps ssh Anti-Spyware Chapter 4: Marking Up With HTML: A Hypertext Markup Language Primer Fluency with Information Technology Third

More information

04 Links & Images. 1 The Anchor Tag. 1.1 Hyperlinks

04 Links & Images. 1 The Anchor Tag. 1.1 Hyperlinks One of the greatest strengths of Hypertext Markup Language is hypertext the ability to link documents together. The World Wide Web itself consists of millions of html documents all linked together via

More information

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11 MS Excel Handout: Level 2 elearning Department 2016 Page 1 of 11 Contents Excel Environment:... 3 To create a new blank workbook:...3 To insert text:...4 Cell addresses:...4 To save the workbook:... 5

More information

Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu)

Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu) Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu) Updated on 10/17/2014 Table of Contents About... 4 Who Can Use It... 4 Log into Ingeniux... 4 Using Ingeniux

More information

State of Nevada. Ektron Content Management System (CMS) Basic Training Guide

State of Nevada. Ektron Content Management System (CMS) Basic Training Guide State of Nevada Ektron Content Management System (CMS) Basic Training Guide December 8, 2015 Table of Contents Logging In and Navigating to Your Website Folders... 1 Metadata What it is, How it Works...

More information

Introduction to OpenOffice Writer 2.0 Jessica Kubik Information Technology Lab School of Information University of Texas at Austin Fall 2005

Introduction to OpenOffice Writer 2.0 Jessica Kubik Information Technology Lab School of Information University of Texas at Austin Fall 2005 Introduction to OpenOffice Writer 2.0 Jessica Kubik Information Technology Lab School of Information University of Texas at Austin Fall 2005 Introduction: OpenOffice Writer is a word processing application

More information

Web Authoring CSS. www.fetac.ie. Module Descriptor

Web Authoring CSS. www.fetac.ie. Module Descriptor The Further Education and Training Awards Council (FETAC) was set up as a statutory body on 11 June 2001 by the Minister for Education and Science. Under the Qualifications (Education & Training) Act,

More information

How to Use Swiftpage for Microsoft Excel

How to Use Swiftpage for Microsoft Excel How to Use Swiftpage for Microsoft Excel 1 Table of Contents Basics of the Swiftpage for Microsoft Excel Integration....3 How to Install Swiftpage for Microsoft Excel and Set Up Your Account...4 Creating

More information

Web Authoring. www.fetac.ie. Module Descriptor

Web Authoring. www.fetac.ie. Module Descriptor The Further Education and Training Awards Council (FETAC) was set up as a statutory body on 11 June 2001 by the Minister for Education and Science. Under the Qualifications (Education & Training) Act,

More information

Microsoft FrontPage 2003

Microsoft FrontPage 2003 Information Technology Services Kennesaw State University Microsoft FrontPage 2003 Information Technology Services Microsoft FrontPage Table of Contents Information Technology Services...1 Kennesaw State

More information

COMMONWEALTH OF PENNSYLVANIA DEPARTMENT S OF Human Services, INSURANCE, AND AGING

COMMONWEALTH OF PENNSYLVANIA DEPARTMENT S OF Human Services, INSURANCE, AND AGING COMMONWEALTH OF PENNSYLVANIA DEPARTMENT S OF Human Services, INSURANCE, AND AGING INFORMATION TECHNOLOGY GUIDELINE Name Of Guideline: Domain: Application Date Issued: 03/18/2014 Date Revised: 02/17/2016

More information

Penn State Behrend Using Drupal to Edit Your Web Site August 2013

Penn State Behrend Using Drupal to Edit Your Web Site August 2013 Penn State Behrend Using Drupal to Edit Your Web Site August 2013 Alternative Format Statement This publication is available in alternative media upon request. Statement of Non-Discrimination The Pennsylvania

More information

The Home link will bring you back to the Dashboard after. Workflows alert you to outstanding assets waiting for approval or review.

The Home link will bring you back to the Dashboard after. Workflows alert you to outstanding assets waiting for approval or review. Gonzaga University s content management system (CMS) is a software program that allows individuals to create and edit departmental websites. This tutorial demonstrates commonly used CMS functions. For

More information

Creating Web Pages With Dreamweaver MX 2004

Creating Web Pages With Dreamweaver MX 2004 Creating Web Pages With Dreamweaver MX 2004 1 Introduction Learning Goal: By the end of the session, participants will have an understanding of: What Dreamweaver is, and How it can be used to create basic

More information

Quick Reference Guide

Quick Reference Guide Simplified Web Interface for Teachers Quick Reference Guide Online Development Center Site Profile 5 These fields will be pre-populated with your information { 1 2 3 4 Key 1) Website Title: Enter the name

More information

WYSIWYG Editor in Detail

WYSIWYG Editor in Detail WYSIWYG Editor in Detail 1. Print prints contents of the Content window 2. Find And Replace opens the Find and Replace dialogue box 3. Cut removes selected content to clipboard (requires a selection) 4.

More information

MICROSOFT POWERPOINT STEP BY STEP GUIDE

MICROSOFT POWERPOINT STEP BY STEP GUIDE IGCSE ICT SECTION 16 PRESENTATION AUTHORING MICROSOFT POWERPOINT STEP BY STEP GUIDE Mark Nicholls ICT Lounge Page 1 Contents Importing text to create slides Page 4 Manually creating slides.. Page 5 Removing

More information

If you want to go back to the normal text just. Editing the code in HTML is a technical feature and it should only be done by advanced users.

If you want to go back to the normal text just. Editing the code in HTML is a technical feature and it should only be done by advanced users. Content Editor Audience: Website Administrators, Faculty/ Staff, CMS Page Authors and Publishers The Content Editor is how the regular user can create true HTML pages. This editor has similar functions

More information

Microsoft Word 2013 Basics

Microsoft Word 2013 Basics Microsoft Word 2013 Basics 1. From Start, look for the Word tile and click it. 2. The Ribbon- seen across the top of Microsoft Word. The ribbon contains Tabs, Groups, and Commands a. Tabs sit across the

More information

HTML Exercise 6 Linking to Specific Locations within Documents (Bookmarks)

HTML Exercise 6 Linking to Specific Locations within Documents (Bookmarks) HTML Exercise 6 Linking to Specific Locations within Documents (Bookmarks) Some Web pages are many screens long and you must scroll down to see the information at the bottom of the page. Adding hyperlinks

More information

Lecture 9 HTML Lists & Tables (Web Development Lecture 3)

Lecture 9 HTML Lists & Tables (Web Development Lecture 3) Lecture 9 HTML Lists & Tables (Web Development Lecture 3) Today is our 3 rd Web Dev lecture During our 2 nd lecture on Web dev 1. We learnt to develop our own Web pages in HTML 2. We learnt about some

More information

Short notes on webpage programming languages

Short notes on webpage programming languages Short notes on webpage programming languages What is HTML? 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

More information