RECOMMENDED HTML TAGS AND GUIDELINES

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

HTML, CSS, XML, and XSL

ICT 6012: Web Programming

How to Manage Your Eservice Center Knowledge Base

Web Design with Dreamweaver Lesson 4 Handout

ebooks: Exporting EPUB files from Adobe InDesign

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

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

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

Advanced Drupal Features and Techniques

The following are some basic HTML Tags you can use within a Text Box on your site.

How to Construct a Web Site: A Brief Introduction 1

Formatting Text in Blackboard

Creating HTML authored webpages using a text editor

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

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

How to Create an HTML Page

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

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

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

WYSIWYG Tips and FAQ

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

Introduction to XHTML. 2010, Robert K. Moniot 1

COMMON CUSTOMIZATIONS

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

Introduction to Web Design Curriculum Sample

HT H ML B as a ics c 1

Website Planning Checklist

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

Creating an HTML Document Using Macromedia Dreamweaver

About webpage creation

HTML Basics(w3schools.com, 2013)

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

Basic tutorial for Dreamweaver CS5

PowerPointoint Presentations a n d T U S K [

Creating a Resume Webpage with

Microsoft FrontPage 2003 Creating a Personal Web Page

Basic Website Maintenance Tutorial*

BLACKBOARD 9.1: Text Editor

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

Product Promotions Management

Microsoft Word 2013 Creating a Personal Web Page (Level 2)

Help on Icons and Drop-down Options in Document Editor

Building Your Website

P a g e 0. Training Guide for the Content Management System

ICE: HTML, CSS, and Validation

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

CMS Cheat Sheet for Communiqués

UNPAN Portal Content Management System (CMS) User Guide

Creating Accessible Documents in Word 2011 for Mac

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

Microsoft Outlook Introduction

Using the Content Management System

RIT Scholar Works User Guide

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence

Dreamweaver CS6 Basics

Mass . General Use

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

Tips and tricks with Text boxes in Mahara

collab.virginia.edu UVACOLLAB ECLPS: BUILDING COURSE PORTALS UVaCollab User Guide Series

Mastering the JangoMail EditLive HTML Editor

Dreamweaver: Getting Started Website Structure Why is this relevant?

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

WebCT 4.x: HTML Editor

EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE WEB EDITING

No restrictions are placed upon the use of this list. Please notify us of any errors or omissions, thank you,

MS Word 2007 practical notes

The Web Web page Links 16-3

WYSIWYG Editor in Detail

1. Create a web page which will contain image of window layout as follows.

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

Drupal Training Guide

Educational Technology Department IT Master Plan Training Modules. Notes for Internet (Web Design & Publishing)

Microsoft Word 2010 Basics

Professional & Workgroup Editions

Dolphin Dynamics. Document Configuration: HTML Editor

USM Web Content Management System

Dreamweaver. Introduction to Editing Web Pages

Website 101. Yani Ivanov. Student Assistant / Web Administrator

Basics of HTML (some repetition) Cascading Style Sheets (some repetition) Web Design

How To Create A Website In Drupal 2.3.3

Web Publishing Basics 2

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

rbweb RB Web 8 online office for office staff User Guide

XHTML BASICS. Institute of Finance Management CIT Department Herman Mandari

TEMPLATE MANUAL Table of Contents

WORDPRESS MANUAL WEBSITEDESIGN.CO.ZA

Lab 1.3 Basic HTML. Vocabulary. Discussion and Procedure

Your First Web Page. It all starts with an idea. Create an Azure Web App

Cut-to-the-Chase Series Web Foundations. HTML Assignment. By Eric Matthews Visit us at:

FETAC Certificate in Multimedia Production. IBaT College Swords. FETAC Certificate in Multimedia Production Web Authoring Dreamweaver 3

KFUPM. Web Content Management System powered by SharePoint

Word processing software

Word Processing programs and their uses

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.

Web Portal User Guide. Version 6.0

KEZBER CONTENT MANAGEMENT SYSTEM MANUAL

Impress Guide Chapter 3 Adding and Formatting Text

HTML. A computer network is a collection of computers linked through cables or wireless means.

Groups. Set-up & Maintenance

Transcription:

RECOMMENDED HTML TAGS AND GUIDELINES Overview The HTML required to write articles for the myufl portal is very simple. In fact, you can publish a single paragraph with no formatted text without using any HTML. This document lists the basic HTML tags you can use in the portal and is not meant to be a complete reference guide to HTML. We strongly recommend that you do not use HTML tags other than the ones listed here. Complex HTML does not work well in the portal. Please read the Guidelines and Additional Information section at the end of this document. Objectives This Appendix will show you several ways to format your text using HTML: Change the font style Create a new paragraph or a line break Create a list of items Use special characters Insert links to external Web sites Insert email hyperlink Insert images Style Tags Bold Use a <b> to begin the bold, and a </b> to end the bold. HTML example: <b>this text is bold.</b> This text is bold. HTML example: This text is <b>bold</b>. This text is bold. UF Bridges - 1 - HTML Guide (Updated July 22, 2005)

Spacing Text Italics Use an <i> to begin the italics, and an </i> to end the italics. HTML example: <i>this text is italics.</i> This text is italics. HTML example: This text is <i>italics</i>. This text is italics. Subscript Use a <sub> to begin the subscript, and a </sub> to end the subscript. HTML example: <sub>this text is subscript.</sub> This text is subscript. HTML example: This text is <sub>subscript</sub>. This text is subscipt. Superscript Use a <sup> to begin the superscript, and a </sup> to end the superscript. HTML example: <sup>this text is superscript.</sup> This text is superscript. HTML example: This text is <sup>superscript</sup>. This text is superscipt. Paragraph This is the most useful tag to know. You only need to put a <p> between the end of one paragraph and the beginning of the next paragraph. Unlike style tags, you do not need both a beginning and ending tag (e.g., <b> and </b>). You can enter the text with or without a hard return but you need the <p> regardless. HTML example: Although this article is written without any spacing, it will appear in the portal as two separate paragraphs if you use the paragraph tag. This tag is commonly referred to as the p tag.<p> When you have long articles you definitely need the p tag. If you only learn one HTML tag, this is the one to learn! Although this article is written without any spacing, it will appear in the portal as two separate paragraphs if you use the paragraph tag. This tag is commonly referred to as the p tag. When you have long articles you definitely need the p tag. If you only learn one HTML tag, this is the one to learn! UF Bridges - 2 - HTML Guide (Updated July 22, 2005)

Line Break This is used for setting a line break when you do not want a new paragraph, and most commonly used for contact information. Like the paragraph tag, you only need to use a single <br>. You can type the text with or without a hard return as long as you put the break tag between the end of one line and beginning of another line. HTML example: Dr. John Q. Scholar<br>11111 University Hall <br>gainesville, FL 32611<br>Phone: 352-999-9999 Dr. John Q. Scholar 11111 University Hall Gainesville, FL 32611 Phone: 352-999-9999 Non-breaking Space This is used for extra spacing between words or indenting text. The tag equals one non-breaking space. The semicolon at the end of the tag is required. HTML example: John Q. Scholar 352-999-9999 John Q. Scholar 352-999-9999 List Tags Un-ordered List Items will be marked with bullets, typically small black circles. HTML example: <ul> <li>portal March 2003</li> <li>reporting August 2004</li> <li>finance July 2004</li> <li>human Resources July 2004</li> <li>student Admin 2005-2006</li> </ul> Portal March 2003 Reporting August 2004 Finance July 2004 Human Resources July 2004 Student Admin 2005-2006 UF Bridges - 3 - HTML Guide (Updated July 22, 2005)

Ordered list Items will be marked with numbers in order. HTML example: <ol> <li>portal March 2003</li> <li>reporting August 2004</li> <li>finance July 2004</li> <li>human Resources July 2004</li> <li>student Admin 2005</li> </ol> 1. Portal March 2003 2. Reporting August 2004 3. Finance July 2004 4. Human Resources July 2004 5. Student Admin 2005 Links Web Sites or documents Used for creating a clickable link (hyperlink) to another Web document or Web page. Inside the myufl portal, you must use the target=_blank attribute to open an external window. Using the target attribute to open another Web browser window allows your readers to maintain their place in myufl. The first part is the URL location (i.e., Web address) and the second part is the clickable text you want to appear. HTML example: Visit the <a href= http://www.ufl.edu target= _blank > UF Web site</a>! Visit the UF Web site! Email Used for creating an imbedded email link. Readers can click on this link to send an email to the address you provide. The first part is the mailto: address and the second part is the clickable text you want to appear. The text may be a word or the actual email address repeated (without the mailto:). HTML example: Email <a href= mailto:myufl@ufl.edu >myufl</a> for help. Email myufl for help. UF Bridges - 4 - HTML Guide (Updated July 22, 2005)

Images Images can be added to a myufl article via the Image tab. To add an image, select Imported JPG Image File and click Add Image. For more information on adding images to myufl articles, please review the Portal Author/Publisher Training Workbook. For image standards, please review the Guide to Adding Images to myufl Articles. Not all images display well in portal articles. Special Characters Character entities In order to display special characters in the portal, you must use the following HTML tags. The table below has the most common character entities and others may be found at http://www.w3schools.com/html/html_entitiesref.asp. HTML example: 2005 University of Florida 2005 University of Florida Result Description HTML multiplication division cent copyright registered trademark UF Bridges - 5 - HTML Guide (Updated July 22, 2005)