Formatting Text in Blackboard

Similar documents
How to Manage Your Eservice Center Knowledge Base

WEB DESIGN LAB PART- A HTML LABORATORY MANUAL FOR 3 RD SEM IS AND CS ( )

With tags you can create italic or bold characters, and can control the color and size of the lettering.

Creating HTML authored webpages using a text editor

HTML5 and CSS3 Part 1: Using HTML and CSS to Create a Website Layout

An Attribute is a special word used inside tag to specify additional information to tag such as color, alignment etc.

ICE: HTML, CSS, and Validation

Urban Planet Website Content Management System. Step-by-Step Instructions

ICT 6012: Web Programming

Advanced Drupal Features and Techniques

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

HTML, CSS, XML, and XSL

Web Design Revision. AQA AS-Level Computing COMP2. 39 minutes. 39 marks. Page 1 of 17

How to Create an HTML Page

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

Creating an HTML Document Using Macromedia Dreamweaver

BASICS OF WEB DESIGN CHAPTER 2 HTML BASICS KEY CONCEPTS COPYRIGHT 2013 TERRY ANN MORRIS, ED.D

So we're set? Have your text-editor ready. Be sure you use NotePad, NOT Word or even WordPad. Great, let's get going.

Caldes CM12: Content Management Software Introduction v1.9

The McGill Knowledge Base. Last Updated: August 19, 2014

The Web Web page Links 16-3

COMMON CUSTOMIZATIONS

Introduction Designing your Common Template Designing your Shop Top Page Product Page Design Featured Products...

Web Design Module Outline

Joomla Article Advanced Topics: Table Layouts

Making Content Editable. Create re-usable templates with total control over the sections you can (and more importantly can't) change.

Creating your personal website. Installing necessary programs Creating a website Publishing a website

Introduction to XHTML. 2010, Robert K. Moniot 1

Interaction between browser and server. HTML (Hyper Text Markup Language)

ITNP43: HTML Lecture 4

Chapter 2 HTML Basics Key Concepts. Copyright 2013 Terry Ann Morris, Ed.D

HTML Basics(w3schools.com, 2013)

About webpage creation

Lab 1.3 Basic HTML. Vocabulary. Discussion and Procedure

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide

Taking your HTML s to the Next Level. Presented by: Joey Trogdon, Asst. Director of Financial Aid & Veterans Affairs Randolph Community College

Creating a Web Page Using HTML, XHTML, and CSS: The Basics

How To Create A Website In Drupal 2.3.3

How to code, test, and validate a web page

7 th Grade Web Design Name: Project 1 Rubric Personal Web Page

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

WEBMAIL User s Manual

HTML & XHTML Tag Quick Reference

Digital Marketing EasyEditor Guide Dynamic

Web Design with Dreamweaver Lesson 4 Handout

Web Development 1 A4 Project Description Web Architecture

BLACKBOARD 9.1: Text Editor

Short notes on webpage programming languages

Web Developer Jr - Newbie Course

EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE WEB EDITING

Web Design and Databases WD: Class 7: HTML and CSS Part 3

CiviCRM for The Giving Circle. Bulk Mailing Tips & Tricks

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

Create Webpages using HTML and CSS

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

NDSU Technology Learning & Media Center. Introduction to Google Sites

WebCT 4.x: HTML Editor

Drupal Training Guide

Selectors in Action LESSON 3

WYSIWYG Tips and FAQ

HTML COLORS. vlink - sets a color for visited links - that is, for linked text that you have already clicked on.

TEMPLATE MANUAL Table of Contents

Basic tutorial for Dreamweaver CS5

Getting Started with KompoZer

WYSIWYG Editor in Detail

Weebly Step-by-Step Instructions

Last week we talked about creating your own tags: div tags and span tags. A div tag goes around other tags, e.g.,:

By Glenn Fleishman. WebSpy. Form and function

Wellesley College Alumnae Association. Volunteer Instructions for Template

Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc mraymond@luminys.com

CREATING HORIZONTAL NAVIGATION BAR USING ADOBE DREAMWEAVER CS5

creating web pages in HTML due by noon on Friday, January 28

Sage Accountants Business Cloud EasyEditor Quick Start Guide

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

Cascading Style Sheet (CSS) Tutorial Using Notepad. Step by step instructions with full color screen shots

Web Building Blocks. Joseph Gilbert User Experience Web Developer University of Virginia Library

CGI.pm Tutorial. Table of content. What is CGI? First Program

CSE 143, Winter 2013 Programming Assignment #2: HTML Validator Due Thursday, July 10, 2014, 11:30 PM

Creating Web Pages with Dreamweaver CS 6 and CSS

How to - Newsletter & Memo Section

Garfield Public Schools Fine & Practical Arts Curriculum Web Design

Adding Links to Resources

DRUPAL BASICS WEBSITE DESIGN & DEVELOPMENT. digital.uoregon.edu/drupal-basics

Dreamweaver: Getting Started Website Structure Why is this relevant?

How to Use Swiftpage for Microsoft Outlook

Mura CMS. (Content Management System) Content Manager Guide

Transcription:

Formatting Text in Blackboard If you want to spice up your blackboard announcements with different color of the text, bolded text, italicized text, lists, tables and images you can do so by typing HTML in your announcements. HTML (Hyper Text Markup Language) is the language of the web. HTML is composed of many tags that appear in angle brackets like this <b>. These tags allow you to control the way the text is formatted in your web browser. HTML contains large set of these tags, but in order to get started with formatting text in blackboard, you only need to learn a couple of the most common ones. How to use tags When entering information into blackboard click on smart text at the bottom of the page. This will allow you to use html tags into your text. Here is a list of common tags <b> - makes text bold <i> - makes text italic <a href="site"> - adds a URL link <li> - item of a list <ol> - creates ordered list (with numbers) <ul> - creates unordered list (with bullets) <hr> - adds horizontal rule (horizontal line) <p> - marks the beginning and ending of a paragraph <h1> <h2> <h3> - makes text into headings <br> - adds a break (carriage return) to a line. <blockquote> - allows you to indent text <font color="color" size="size"> - allows you to change the size and color of a text revision: April 2010 1

Available Colors: aqua, black, blue, fuchsia, grey, green, lime, maroon, navy, olive, purple, red, silver, teal, white, and yellow Available Sizes: 1,2,3,4,5,6,7 Tag Code Example <b> <b>some Bold Text</b> Some Bold Text <i> <i>some Italicized Text</i> Some Italicized Text <a> <a href="http://www.google.com">google</a> Google <ol> <ol> <li>item 1</li> <li>item 2</li> <li>item 3</li> </ol> 1. item 1 2. item 2 3. item 3 <ul> <ul> <li>item 1</li> <li>item 2</li> <li>item 3</li> </ul> item 1 litem 2 litem 3 <p> <p>this is the beginning of paragraph one. It can continue for a while. This is the end of paragraph one. </p> <p>this is the beginning of paragraph two. It can continue for a while. This is the end of paragraph two. </p> This is the beginning of paragraph one. It can continue for a while. This is the end of paragraph one. This is the beginning of paragraph two. It can continue for a while. This is the end of paragraph two. <h1> <h1>heading 1</h1> Heading 1 <h2> <h2>heading 2</h2> Heading 2 revision: April 2010 2

<h3> <h3>heading 3</h3> Heading 3 <br> this is some text<br>this is some more text this is some text this is some more text <font color> <font color="aqua">aqua</font> aqua <font color="black">black</font> black <font color="blue">blue</font> blue <font color="fuchsia">fuchsia</font> fuchsia <font color="grey">grey</font> grey <font color="green">green</font> green <font color="lime">lime</font> lime <font color="maroon">maroon</font> maroon <font color="navy">navy</font> navy <font color="olive">olive</font> olive <font color="purple">purple</font> purple <font color="red">red</font> red <font color="silver">silver</font> silver <font color="teal">teal</font> teal <font color="white">white</font> white <font color="yellow">yellow</font> Yellow <font size> <font size="1">size 1</font> size 1 <font size="2">size 2</font> size 2 <font size="3">size 3</font> size 3 <font size="4">size 4</font> size 4 <font size="5">size 5</font> size 5 <font size="6">size 6</font> size 6 <font size="7">size 7</font> <blockquote> <p>this is text that is not indented<p><blockquote>this is text that is indented </blockquote> size 7 This is text that is not indented. This is text that is indented Note: any combination of the tags can be used. revision: April 2010 3

Example Using tags will result in a formatted message like: You can use combinations of tags to make important information stand out. Remember to close your tags If you do not remember to close your tags the attributes of the tag will continue through the whole selection that you write. For example if you only want to bold one word in a paragraph, but you do not close the bold tag, every word in the paragraph and the following paragraphs will be bold because the tag was never closed. Adding Images You can use HTML to add images to blackboard also using the img tag. An example of how the img tag is used follows: <img src="filename.jpg" width="100" height="100"> This displays the file "filename.jpg" at a width and height of 100 pixels. If the width and height is not specified, the image's original dimensions will be used. You can set different attributes of the image using the "equals" sign. Here is a list of some of the attributes. The value should be placed between quotation marks Attribute Values example align bottom, middle, top, left, right align="right" width pixels or percent (of the page) width="10px" or "10%" revision: April 2010 4

height border hspace vspace pixels or percent (of the page) pixels pixels pixels height="10px" or "10%" border="3px" hspace="10px" vspace="10px" You can add images to any of the items in the Content Areas. To add an image, add an item to any of the content areas in Blackboard. In the text area, enter an image tag and set the attributes you want. Make sure that the "Smart Text" circle is filled and click submit. Blackboard will alert you that you are trying to link to an image that doesn't exist, and then allow you to upload your picture. Click Browse to locate the image file on your hard drive. Then click Submit to finish creating the item. revision: April 2010 5

You will see your new content, and the image is embedded in it. revision: April 2010 6