NukaCode - Front End - Bootstrap Documentation

Size: px
Start display at page:

Download "NukaCode - Front End - Bootstrap Documentation"

Transcription

1 Nuka - Front End - Bootstrap Documentation Release stygian July 04, 2015

2

3 Contents 1 Badges Links Installation New CSS Classes Laravel Helpers Themes i

4 ii

5 Nuka - Front End - Bootstrap Documentation, Release This package is designed to make using Twitter Bootstrap much easier in Laravel. It requires Core, but otherwise, works out of the box. Contents 1

6 Nuka - Front End - Bootstrap Documentation, Release Contents

7 CHAPTER 1 Badges 1.1 Links Github Packagist 1.2 Installation Installation Laravel-Base If you are adding bootstrap to Laravel-Base, you will need to make some minor changes. Remove resources/views/layouts/default.blade.php (Optional but this package contains a more in depth layout) Remove Illuminate\Html\HtmlServiceProvider from config/app.php. Composer composer require nukacode/front-end-bootstrap:~1.0 Routes If you would like to use the included routes, add the following to your app/http/routes.php file. include_once(base_path().'/vendor/nukacode/front-end-bootstrap/src/routes.php'); Service Providers Add the following service providers to configs/app.php... code: 3

8 Nuka - Front End - Bootstrap Documentation, Release 'Nuka\Bootstrap\BootstrapServiceProvider', 'Nuka\Bootstrap\Html\HtmlServiceProvider', Themes Bower Hint: You only need to have one of these. bower install -S nukacode-bootstrap-base#~0 bower install -S nukacode-bootstrap-dark#~0 Resources app.less At the top of resources/assets/less/app.less add the line below that matches your theme. Make sure this is first line of that '../../../vendor/bower_components/nukacode-bootstrap-dark/less/dark'; colors.less Create a file in resources/assets/less/ called colors.less. This file is used to quickly set some of the main variables of the theme. You can of course overload any other standard bootstrap variables as you like in this file as lighten(@gray, lighten(@gray, lighten(@gray, lighten(@gray, darken(@brand-primary, darken(@brand-primary, darken(@brand-info, darken(@brand-success, darken(@brand-warning, 4 Chapter 1. Badges

9 Nuka - Front End - Bootstrap Documentation, Release New CSS Classes New CSS Classes Backgrounds A number of background colors have been supplied. These can be added to any element as they just set the background color to the themes predefined colors. Class bg-primary bg-info bg-warning bg-danger bg-success bg-inverse bg-purple bg-radiation Brand color brand-primary brand-info brand-warning brand-danger brand-success brand-black brand-purple brand-radiation Badges There are a few new badge classes. These work the same as standard classes and use the corresponding brand color for their background color. badge-primary badge-info badge-success badge-warning badge-danger <span class="badge badge-primary">10</span> Buttons This is meant to be an inverted button. It varies by theme, but will always match the default theme settings. btn-inverse 1.3. New CSS Classes 5

10 Nuka - Front End - Bootstrap Documentation, Release <button class="btn btn-inverse">go Back</button> Panels We have worked to add quite a few useful additions to panels. These are all completely optional of course, but we feel they add a lot of functionality people would find useful. Panel Alerts Panel alerts are used when you need to alert the user to some details about what the panel contains. You could also use them to detail errors and messages from form submission if you chose as well. <div class="panel panel-default"> <div class="panel-alert panel-alert-info">info Alert 6 Chapter 1. Badges

11 Nuka - Front End - Bootstrap Documentation, Release Class Image panel-alert-info panel-alert-warning panel-alert-danger panel-alert-success Panel Buttons Panel buttons are used to add quick and easy buttons to the panel heading. These come in all the common classes or a classless version. You can have as many or as few as you want. Just keep adding them to suit your needs New CSS Classes 7

12 Nuka - Front End - Bootstrap Documentation, Release <div class="panel panel-default"> <div class="panel-heading"> Panel Heading <div class="panel-btn primary"> <a><i class="fa fa-plus"></i></a> <div class="panel-body">panel Body 8 Chapter 1. Badges

13 Nuka - Front End - Bootstrap Documentation, Release Class Image info danger primary warning success <none> 1.3. New CSS Classes 9

14 Nuka - Front End - Bootstrap Documentation, Release Text The only addition to text is the inclusion of text-primary as a class. This will set your text color to the brand-primary. <p class="text-primary">something</p> Tables The only addition to tables is the inclusion of a primary table row class to use your primary brand color. <tr class="primary"><td>something</td></tr> Wells Wells have been upgraded slightly to have a bit more styling. The inclusion of the well-title helps distinguish wells on a page. Well Title <div class="well"> <div class="well-title info">well title Default Well 10 Chapter 1. Badges

15 Nuka - Front End - Bootstrap Documentation, Release Class Image <none> info success warning danger Well Title Buttons Well title buttons work like panel buttons. Unlike panel buttons, there can only be one at a time. <div class="well"> <div class="well-title"> <div class="well-btn well-btn-right"><i class="fa fa-plus"></i> Well title Default Well 1.3. New CSS Classes 11

16 Nuka - Front End - Bootstrap Documentation, Release Class Image <none> info success warning danger 12 Chapter 1. Badges

17 Nuka - Front End - Bootstrap Documentation, Release Laravel Helpers HTML Image Links linkimage $url Yes The url the image will link to. $imagesrc Yes The location of the image. $attributes No [] Any attributes to add to the anchor tag. $https No null Whether to use https. {{ HTML::linkImage('/home', public_path('img/test.png')) }} linkrouteimage $route Yes The route the image will link to. $parameters Yes Any parameters the route may need. $imagesrc Yes The location of the image. $attributes No [] Any attributes to add to the anchor tag. $https No null Whether to use https. {{ HTML::linkRouteImage('user.profile', ['id' => 1], public_path('img/test.png')) }} Icon Links linkicon $url Yes The url the image will link to. $iconclasses Yes The icon classes to use. $icontext No null Any text to display after the icon. $attributes No [] Any attributes to add to the anchor tag. $https No null Whether to use https. {{ HTML::linkIcon('/home', 'fa fa-home', 'Go Home') }} linkrouteicon $route Yes The route the image will link to. $parameters Yes Any parameters the route may need. $iconclasses Yes The icon classes to use. $icontext No null Any text to display after the icon. $attributes No [] Any attributes to add to the anchor tag. $https No null Whether to use https Laravel Helpers 13

18 Nuka - Front End - Bootstrap Documentation, Release {{ HTML::linkRouteIcon('user.profile', ['id' => 1], 'fa fa-user', 'Admin's Profile') }} Typography span $value Yes The text inside the tag. $attributes No [] Any attributes to add to the tag. {{ HTML::span('this is a span') }} bold $value Yes The text inside the tag. $attributes No [] Any attributes to add to the tag. {{ HTML::bold('This is bold text') }} italic $value Yes The text inside the tag. $attributes No [] Any attributes to add to the tag. {{ HTML::italic('This is italicized text') }} 14 Chapter 1. Badges

19 Nuka - Front End - Bootstrap Documentation, Release delete $value Yes The text inside the tag. $attributes No [] Any attributes to add to the tag. {{ HTML::delete('This is deleted text') }} strike $value Yes The text inside the tag. $attributes No [] Any attributes to add to the tag. {{ HTML::strike('This text is striked out') }} insert $value Yes The text inside the tag. $attributes No [] Any attributes to add to the tag. {{ HTML::insert('This is inserted text') }} underline $value Yes The text inside the tag. $attributes No [] Any attributes to add to the tag Laravel Helpers 15

20 Nuka - Front End - Bootstrap Documentation, Release {{ HTML::underline('This is underlined text') }} mark $value Yes The text inside the tag. $attributes No [] Any attributes to add to the tag. This is {{ HTML::mark('marked') }} text small $value Yes The text inside the tag. $attributes No [] Any attributes to add to the tag. This is {{ HTML::small('small') }} text lead $value Yes The text inside the tag. {{ HTML::lead('This text should stand out.') }} 16 Chapter 1. Badges

21 Nuka - Front End - Bootstrap Documentation, Release quote $value Yes The text inside the tag. $source No null The source of the quote. {{ HTML::quote('This is quoted text.', 'By Stygian') }} description To use bootstrap description lists pass an array to this method. The key will be the bolded text, the value will be the description text. $list Yes The text inside the tag. $attributes No [] Any attributes to add to the tag. $list = ['Description lists' => 'A description list is perfect for defining terms.', 'Euismod' => 'so {{ HTML::description($list) }} {{ HTML::description($list, ['class' => 'dl-horizontal']) }} 1.4. Laravel Helpers 17

22 Nuka - Front End - Bootstrap Documentation, Release code $value Yes The text inside the tag. $attributes No [] Any attributes to add to the tag. This is {{ HTML::code('code') }} text kbd KBD can accept either a single key or an array of keys. If it gets an array, it will automatically place the + between them. $keys Yes The keyboard key(s) that will be used. {{ HTML::kbd('ctrl') }} {{ HTML::kbd(['ctrl', 'alt', 'del']) }} Iframes iframe This will create a generic iframe with whatever you pass to it. $url Yes The url the iframe will point to. $attributes No [] Any attributes to add to the tag. {{ HTML::iframe(' }} 18 Chapter 1. Badges

23 Nuka - Front End - Bootstrap Documentation, Release embed This will create a bootstrap iframe that uses responsive sizing. $url Yes The url the iframe will point to. $aspect No 16by9 Valid aspects are 16by9 and 4by3. {{ HTML::embed(' '4by3') }} Form Sizes and Types The bootstrap form builder has a few things that it considers globally important to a form. Sizes can be looked at as the gutters everything will fall into. By default, we assume a label will be 2 columns and the inputs will be 10 columns. This can be changed using setsizes() at any time. Note: Sizes only apply to horizontal type forms. Type describes the bootstrap form type. A type can be basic, inline or horizontal. You can see details on the types at getbootstrap.com. Form Groups To use bootstrap form groups is actually pretty easy.: {{ Form::groupOpen() }} // Form elements {{ Form::groupClose() }} To make things easier, when calling groupopen() you can pass up to 3 sizes and it will reset the sizes for this group. The form will switch back to the previous sizes once the form group is closed. Form groups have a few optional addendums that you can use to better control the output. Sizing You can add lg or sm to change the input sizes of the form group elements. {{ Form::lgGroupOpen() }} Offset Inputs For checkboxes, radios and submit buttons, you may not have any labels on the left (primarily on horizontal forms). For these situations, open an offset form group. {{ Form::offsetGroupOpen() }} 1.4. Laravel Helpers 19

24 Nuka - Front End - Bootstrap Documentation, Release Validation States Bootstrap also gives nice validation states to form groups. These are success, warning and error. {{ Form::warningGroupOpen() }} Feedback Lastly, form inputs can have icons denoting feedback. These too require a special form group. {{ Form::feedbackGroupOpen() }} Putting it all together The bst thing of all is that these groups are not exclusive. You can combine them as you wish to get any result you need. {{ Form::warningFeedbackGroupOpen() }} {{ Form::errorOffsetLgGroupOpen() }} Inputs Now that we can open form groups, let s dig into inputs. These are the basis of all forms, so they deserve attention. Each form element that is called automatically gets the class form-control added to it. Certain specific elements get default classes added to them as well but will be covered in their own area below. label This element will have the sr-only class applied to it on inline forms and col-md-<label size> control-label for horizontal forms. Note: Be careful with this. If you call this and also set the label parameter on your input, two labels will show up. $name Yes The name of the element this label is for. $value No null The text displayed for the label. $options No [] Any attributes to add to the element. {{ Form::label(' ', ' Address') }} {{ Form::text(' ') }} HTML <div class="form-group "> <label for=" "> Address</label> <input class="form-control" name=" " type="text" id=" "> 20 Chapter 1. Badges

25 Nuka - Front End - Bootstrap Documentation, Release help The help method will add help text to a given element. $text Yes The text that will be displayed. $options No [] Any attributes to add to the element. {{ Form::text(' ', $user-> , [], ' Address') }} {{ Form::help('Your address should be account@provider') }} HTML <div class="form-group "> <label for=" "> Address</label> <input class="form-control" name=" " type="text" value="example@google.com" id=" "> <span class="help-block">your address should be account@provider</span> icon This is used in conjunction with the feedback form group. It is what sets the icon inside of the input element. $class Yes The class(es) of the icon to use. $options No [] Any attributes to add to the element. Note: The form builder will take into account glyphicon and font-awesome classes for spacing. {{ Form::feedbackSuccessGroupOpen() }} {{ Form::text(' ', $user-> , [], ' Address') }} {{ Form::icon('fa fa-user') }} {{ Form::groupClose() }} 1.4. Laravel Helpers 21

26 Nuka - Front End - Bootstrap Documentation, Release HTML <div class="form-group has-success has-feedback"> <label for=" "> Address</label> <input class="form-control has-success has-feedback" name=" " type="text" value="example@goog <span class="form-control-feedback fa fa-user" style="top: 30px;" aria-hidden="true"></span> date This will create a standard HTML 5 date input. $name Yes The name of the element this label is for. $value No null The text displayed for the label. $options No [] Any attributes to add to the element. $label No null Is this is supplied, it creates a label with this text for you. {{ Form::date('publish_on', ' ', [], 'When should this be published?') }} HTML <div class="form-group "> <label for="publish_on">when should this be published?</label> <input class="form-control" name="publish_on" type="date" value=" "> staticinput This will create a text entry instead of an input element. See getbootstrap.com for more details. $name Yes The name of the element this label is for. $value No null The text displayed for the label. $options No [] Any attributes to add to the element. $label No null Is this is supplied, it creates a label with this text for you. 22 Chapter 1. Badges

27 Nuka - Front End - Bootstrap Documentation, Release {{ Form::staticInput('Account is locked', [], 'Status') }} HTML <div class="form-group "> <label for="">status</label> <p class="form-control-static">account is locked</p> checkbox and radio These are unique but similar to each other, so they will be tackled together. $name Yes The name of the element this label is for. $value No null The text displayed for the label. $checked No false Wether the element should be checked by default. $options No [] Any attributes to add to the element. $label No null Is this is supplied, it creates a label with this text for you. $inline No false This switched the elements to be inline instead of stacked. {{ Form::offsetGroupOpen() }} {{ Form::checkbox('active', 1, true, [], 'Active', true) }} {{ Form::checkbox('hidden', 1, true, [], 'Hidden', true) }} {{ Form::groupClose() }} {{ Form::offsetGroupOpen() }} {{ Form::checkbox('active', 1, true, [], 'Active') }} {{ Form::checkbox('hidden', 1, true, [], 'Hidden') }} {{ Form::groupClose() }} HTML <div class="form-group "> <div class="checkbox-inline"> <label><input checked="checked" name="active" type="checkbox" value="1"> Active</ <div class="checkbox-inline"> <label><input checked="checked" name="hidden" type="checkbox" value="1"> Hidden</ <div class="form-group "> <div class="checkbox"> <label><input checked="checked" name="active" type="checkbox" value="1"> Active</ <div class="checkbox"> 1.4. Laravel Helpers 23

28 Nuka - Front End - Bootstrap Documentation, Release <label><input checked="checked" name="hidden" type="checkbox" value="1"> Hidden</ Everything else Each other input is the same as illuminate/html defaults with the addition of a final parameter: $label. You can add this to quickly create a label for any input you are using. {{ Form::text(name, value, options, 'Some Label') }} HTML <div class="form-group has-success has-feedback"> <label for=" "> Address</label> <input class="form-control has-success has-feedback" name=" " type="text" value="example@goog <span class="form-control-feedback fa fa-user" style="top: 30px;" aria-hidden="true"></span> Helpers open The open method is pretty much the same as Laravel default but with an optional second parameter. This allows you to set the form type when opening the form. It also makes sure your form has the correct bootstrap class based on the type you chose. $options No [] Any options to pass to the form. $type No horizontal The form type (basic, inline or horizontal). 24 Chapter 1. Badges

29 Nuka - Front End - Bootstrap Documentation, Release {{ Form::open([], 'inline') }} setsizes This is used to set the sizes for the entire form. Use it before opening the form. If only the first parameter is sent, the second size will be 12 minus the first (to allow for a full bootstrap column set). $labelsize Yes The size for labels (left most column). $inputsize No 12 - ($labelsize) The size for the inputs (center or right column). $iconsize No 0 An optional third column for anything extra (right column). {{ Form::setSizes(4, 6)->open() }} settype This is used to set the type manually (outside of the open() method). This too must be called before opening the form. $type No The type to set the form to. (basic, inline or horizontal). {{ Form::setType('basic')->open() }} To-Do input groups 1.5 Themes Themes Repos Base Theme Dark Theme Examples You can find an example of each theme at their respective github.io page Themes 25

30 Nuka - Front End - Bootstrap Documentation, Release Chapter 1. Badges

31 Nuka - Front End - Bootstrap Documentation, Release Dark 1.5. Themes 27

32 Nuka - Front End - Bootstrap Documentation, Release Chapter 1. Badges

33 Nuka - Front End - Bootstrap Documentation, Release Base 1.5. Themes 29

MUSE Web Style Guide DRAFT v3

MUSE Web Style Guide DRAFT v3 MUSE Web Style Guide 2016 DRAFT v3 STYLE GUIDE CONTENTS STYLE GUIDE PURPOSE COLOR PALETTE TYPOGRAPHY MOOD BOARD IMAGERY FOR CONCEPTUALIZING HEADER, FOOTER, NAVIGATION HOMEPAGE and DROP DOWN NAVIGATION

More information

Building beautiful websites with Bootstrap: A case study. by Michael Kennedy michaelckennedy.net

Building beautiful websites with Bootstrap: A case study. by Michael Kennedy michaelckennedy.net Building beautiful websites with Bootstrap: A case study by Michael Kennedy DevelopMentor @mkennedy michaelckennedy.net Objectives Learn what Bootstrap has to offer web developers Install and use Bootstrap

More information

Mateen Eslamy 10/31/13

Mateen Eslamy 10/31/13 Mateen Eslamy 10/31/13 Tutorial In this tutorial, you ll learn how to create a webpage using Twitter Bootstrap 3. The goal of this tutorial is to create a responsive webpage, meaning that if the webpage

More information

Website Development with HTML5, CSS and Bootstrap

Website Development with HTML5, CSS and Bootstrap Contact Us 978.250.4983 Website Development with HTML5, CSS and Bootstrap Duration: 28 hours Prerequisites: Basic personal computer skills and basic Internet knowledge. Course Description: This hands on

More information

Bootstrap All-in-One

Bootstrap All-in-One Solving big problems is easier than solving little problems. Sergey Brin Bootstrap All-in-One A Quick Introduction to Managing Content in Cascade Alex King, Jay Whaley 4/28/17 Bootstrap Docs Facilities

More information

Session 5. Web Page Generation. Reading & Reference

Session 5. Web Page Generation. Reading & Reference Session 5 Web Page Generation 1 Reading Reading & Reference https://en.wikipedia.org/wiki/responsive_web_design https://www.w3schools.com/css/css_rwd_viewport.asp https://en.wikipedia.org/wiki/web_template_system

More information

This project will use an API from to retrieve a list of movie posters to display on screen.

This project will use an API from   to retrieve a list of movie posters to display on screen. Getting Started 1. Go to http://quickdojo.com 2. Click this: Project Part 1 (of 2) - Movie Poster Lookup Time to put what you ve learned to action. This is a NEW piece of HTML, so start quickdojo with

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

Lecture 7. Action View, Bootstrap & Deploying 1 / 40

Lecture 7. Action View, Bootstrap & Deploying 1 / 40 Lecture 7 Action View, Bootstrap & Deploying 1 / 40 Homeworks 5 & 6 Homework 5 was graded Homework 6 was due last night Any questions? 2 / 40 How would you rate the di culty of Homework 6? Vote at http://pollev.com/cis196776

More information

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

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

Chapter6: Bootstrap 3. Asst.Prof.Dr. Supakit Nootyaskool Information Technology, KMITL

Chapter6: Bootstrap 3. Asst.Prof.Dr. Supakit Nootyaskool Information Technology, KMITL Chapter6: Bootstrap 3 Asst.Prof.Dr. Supakit Nootyaskool Information Technology, KMITL Objective To apply Bootstrap to a web site To know how to build various bootstrap commands to be a content Topics Bootstrap

More information

Working Bootstrap Contact form with PHP and AJAX

Working Bootstrap Contact form with PHP and AJAX Working Bootstrap Contact form with PHP and AJAX Tutorial by Ondrej Svestka Bootstrapious.com Today I would like to show you how to easily build a working contact form using Boostrap framework and AJAX

More information

Layout Manager - Toolbar Reference Guide

Layout Manager - Toolbar Reference Guide Layout Manager - Toolbar Reference Guide Working with a Document Toolbar Button Description View or edit the source code of the document (for advanced users). Save the contents and submit its data to the

More information

Create First Web Page With Bootstrap

Create First Web Page With Bootstrap Bootstrap : Responsive Design Create First Web Page With Bootstrap 1. Add the HTML5 doctype Bootstrap uses HTML elements and CSS properties that require the HTML5 doctype. 2. Bootstrap 3 is mobile-first

More information

By Ryan Stevenson. Guidebook #2 HTML

By Ryan Stevenson. Guidebook #2 HTML By Ryan Stevenson Guidebook #2 HTML Table of Contents 1. HTML Terminology & Links 2. HTML Image Tags 3. HTML Lists 4. Text Styling 5. Inline & Block Elements 6. HTML Tables 7. HTML Forms HTML Terminology

More information

Web Designing. Course Content. Basic HTML Tags. Getting started with CSS. Dealing with Images

Web Designing. Course Content. Basic HTML Tags. Getting started with CSS. Dealing with Images Web Designing Course Content Basic HTML Tags Basic HTML template Heading Tags Paragraph and Break tags Bold and Italics HTML lists Getting started with CSS Introduction to CSS CSS rules Where to put your

More information

FORMS. The Exciting World of Creating RSVPs and Gathering Information with Forms in ClickDimensions. Presented by: John Reamer

FORMS. The Exciting World of Creating RSVPs and Gathering Information with Forms in ClickDimensions. Presented by: John Reamer FORMS The Exciting World of Creating RSVPs and Gathering Information with Forms in ClickDimensions Presented by: John Reamer Creating Forms Forms and Surveys: When and What to Use them For Both Allow you

More information

Table of Contents. MySource Matrix Content Types Manual

Table of Contents. MySource Matrix Content Types Manual Table of Contents Chapter 1 Introduction... 5 Chapter 2 WYSIWYG Editor... 6 Replace Text... 6 Select Snippet Keyword... 7 Insert Table and Table Properties... 8 Editing the Table...10 Editing a Cell...12

More information

CSE 154 LECTURE 8: FORMS

CSE 154 LECTURE 8: FORMS CSE 154 LECTURE 8: FORMS Web data most interesting web pages revolve around data examples: Google, IMDB, Digg, Facebook, YouTube, Rotten Tomatoes can take many formats: text, HTML, XML, multimedia many

More information

Challenge: Working with the MIS2402 Template

Challenge: Working with the MIS2402 Template Challenge: Working with the MIS2402 Template In this challenge we will see how the appearance of the MIS2402 template can be modified. Start by downloading mis2402template04.zip and setting up a corresponding

More information

Creating Pages with the CivicPlus System

Creating Pages with the CivicPlus System Creating Pages with the CivicPlus System Getting Started...2 Logging into the Administration Side...2 Icon Glossary...3 Mouse Over Menus...4 Description of Menu Options...4 Creating a Page...5 Menu Item

More information

Form Overview. Form Processing. The Form Element. CMPT 165: Form Basics

Form Overview. Form Processing. The Form Element. CMPT 165: Form Basics Form Overview CMPT 165: Form Basics Tamara Smyth, tamaras@cs.sfu.ca School of Computing Science, Simon Fraser University October 26, 2011 A form is an HTML element that contains and organizes objects called

More information

GROUPER EVALUATION & REMEDIATION REPORT

GROUPER EVALUATION & REMEDIATION REPORT GROUPER EVALUATION & REMEDIATION REPORT Reviewer: Howard Kramer, hkramer@colorado.edu Technology Used: NVDA (ver. 2016.1), Firefox (ver. 48.0.2) on Windows 10 PC Background This report evaluates the Grouper

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

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

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Make a Website A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Overview Course outcome: You'll build four simple websites using web

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

PHPRad. PHPRad At a Glance. This tutorial will show you basic functionalities in PHPRad and

PHPRad. PHPRad At a Glance. This tutorial will show you basic functionalities in PHPRad and PHPRad PHPRad At a Glance. This tutorial will show you basic functionalities in PHPRad and Getting Started Creating New Project To create new Project. Just click on the button. Fill In Project properties

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 and CSS a further introduction

HTML and CSS a further introduction HTML and CSS a further introduction By now you should be familiar with HTML and CSS and what they are, HTML dictates the structure of a page, CSS dictates how it looks. This tutorial will teach you a few

More information

WEBSITE PROJECT 2 PURPOSE: INSTRUCTIONS: REQUIREMENTS:

WEBSITE PROJECT 2 PURPOSE: INSTRUCTIONS: REQUIREMENTS: WEBSITE PROJECT 2 PURPOSE: The purpose of this project is to begin incorporating color, graphics, and other visual elements in your webpages by implementing the HTML5 and CSS3 code discussed in chapters

More information

HTML + CSS. ScottyLabs WDW. Overview HTML Tags CSS Properties Resources

HTML + CSS. ScottyLabs WDW. Overview HTML Tags CSS Properties Resources HTML + CSS ScottyLabs WDW OVERVIEW What are HTML and CSS? How can I use them? WHAT ARE HTML AND CSS? HTML - HyperText Markup Language Specifies webpage content hierarchy Describes rough layout of content

More information

Web Programming BootStrap Unit Exercises

Web Programming BootStrap Unit Exercises Web Programming BootStrap Unit Exercises Start with the Notes packet. That packet will tell you which problems to do when. 1. Which line(s) are green? 2. Which line(s) are in italics? 3. In the space below

More information

Creating and Managing Your Personal Mines Website on WordPress

Creating and Managing Your Personal Mines Website on WordPress Creating and Managing Your Personal Mines Website on WordPress Table of Contents Creating your site... 2 Managing your site... 2 About WordPress... 2 Logging in... 2 Pages... 2 Editing an Existing Page...

More information

Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo

Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo Note: We skipped Study Guide 1. If you d like to review it, I place a copy here: https:// people.rit.edu/~nbbigm/studyguides/sg-1.docx

More information

Multiple Custom Forms

Multiple Custom Forms Multiple Custom Forms for Magento 2 Extension for Magento 2 User Guide Table of contents 1. Module Features 2. Module Configuration 3. Manage Forms 4. Add Field 4.1. Text Field 4.2. Text Area 4.3. Drop

More information

All Applications Release Bulletin January 2010

All Applications Release Bulletin January 2010 All Applications Release Bulletin January 2010 In this bulletin... Online Enrollment: HTML Forms for Contracts 2 System Administration: MBP Online User Accounts 11 About Release 91_6 This release includes

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

Save Forum Messages will be sent and Pages will be completed by pressing this Save button.

Save Forum Messages will be sent and Pages will be completed by pressing this Save button. I. TEXT EDITOR DIAGRAM 1 2 3 4 5 6 7 8 9 0 - = q w 1 Source Embed source code for YouTube videos, Smileboxes, etc. This button acts as a toggle switch. Click Source to open the screen on which to paste

More information

Introduction to the HTML Editor HTML Editor

Introduction to the HTML Editor HTML Editor HTML Editor This is the Editing window. Let's do a quick rundown of each tool. 1 Undo A click on the Undo button undoes the last edit performed on the page. Repeated clicks on the button will eventually

More information

Enhancing your Page. Text Effects. Paragraph Effects. Headings

Enhancing your Page. Text Effects. Paragraph Effects. Headings Enhancing your Page You can make your pages more visually appealing and organize page content by using text effects, paragraph effects, macros, images, tables, etc. To begin, select the "Edit" button for

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

Provider Application User Interface Guidelines. Page 1

Provider Application User Interface Guidelines. Page 1 Provider Application User Interface Guidelines Page 1 Typography The Provider application includes one typeface: Lato ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz 1234567890!@ $%^&*()-?/Æ Lato

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

PlayerLync Forms User Guide (MachForm)

PlayerLync Forms User Guide (MachForm) PlayerLync Forms User Guide (MachForm) Table of Contents FORM MANAGER... 1 FORM BUILDER... 3 ENTRY MANAGER... 4 THEME EDITOR... 6 NOTIFICATIONS... 8 FORM CODE... 9 FORM MANAGER The form manager is where

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

Here are some working examples of the TopBox stack and details about how each was created.

Here are some working examples of the TopBox stack and details about how each was created. Stacks4Stacks TopBox (https://stacks4stacks.com/) A lightweight and highly customisable modal window effect developed exclusively for RapidWeaver. You will not find TopBox anywhere else. TopBox gives you

More information

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6 CS 350 COMPUTER/HUMAN INTERACTION Lecture 6 Setting up PPP webpage Log into lab Linux client or into csserver directly Webspace (www_home) should be set up Change directory for CS 350 assignments cp r

More information

How to lay out a web page with CSS

How to lay out a web page with CSS Activity 2.6 guide How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS4 to create a simple page layout. However, a more powerful technique is to use Cascading Style

More information

Welcome Please sit on alternating rows. powered by lucid & no.dots.nl/student

Welcome Please sit on alternating rows. powered by lucid & no.dots.nl/student Welcome Please sit on alternating rows powered by lucid & no.dots.nl/student HTML && CSS Workshop Day Day two, November January 276 powered by lucid & no.dots.nl/student About the Workshop Day two: CSS

More information

FCKEditor v1.0 Basic Formatting Create Links Insert Tables

FCKEditor v1.0 Basic Formatting Create Links Insert Tables FCKEditor v1.0 This document goes over the functionality and features of FCKEditor. This editor allows you to easily create XHTML compliant code for your web pages in Site Builder Toolkit v2.3 and higher.

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

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA PRESENCE RadEditor Guide SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 800-920-3897 www.schoolmessenger.com Contents Contents... 2 Introduction... 3 What is RadEditor?... 3 RadEditor

More information

1 Form Basics CSC309

1 Form Basics CSC309 1 Form Basics Web Data 2! Most interesting web pages revolve around data! examples: Google, IMDB, Digg, Facebook, YouTube! can take many formats: text, HTML, XML, multimedia! Many of them allow us to access

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

WYSIWYG Editor: Users Manual

WYSIWYG Editor: Users Manual WYSIWYG Editor: Users Manual Table of Contents WYSIWYG Editor Overview.... 3 Adding Text... 4 Inserting an Image.... 7 Inserting a File.... 15 Embedding Media.... 21 Inserting an Email Link.... 25 Captiva

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

Fish Eye Menu DMXzone.com Fish Eye Menu Manual

Fish Eye Menu DMXzone.com Fish Eye Menu Manual Fish Eye Menu Manual Page 1 of 33 Index Fish Eye Menu Manual... 1 Index... 2 About Fish Eye Menu... 3 Features in Detail... 4 Integrated in Dreamweaver... 6 Before you begin... 7 Installing the extension...

More information

Web Accessibility Checklist

Web Accessibility Checklist Web Accessibility Checklist = Web Content Accessibility Guidelines published by the World Wide Web Consortium (W3C) 508 = Section 508 of the Rehabilitation Act = Both CATE and Moodle take care of the rule

More information

Bootstrap-Flask Documentation

Bootstrap-Flask Documentation Bootstrap-Flask Documentation Release 1.0.4 Grey Li Nov 14, 2018 Contents 1 Contents 3 1.1 Basic Usage............................................... 3 1.2 Use Macros................................................

More information

Welcome Back! Without further delay, let s get started! First Things First. If you haven t done it already, download Turbo Lister from ebay.

Welcome Back! Without further delay, let s get started! First Things First. If you haven t done it already, download Turbo Lister from ebay. Welcome Back! Now that we ve covered the basics on how to use templates and how to customise them, it s time to learn some more advanced techniques that will help you create outstanding ebay listings!

More information

Introduction to CSS. 2 Sep 13. Derek Peacock. An introduction to defining CSS style rules using tags, classes and ids.

Introduction to CSS. 2 Sep 13. Derek Peacock. An introduction to defining CSS style rules using tags, classes and ids. An introduction to defining CSS style rules using tags, classes and ids. 1 The HTML file contains the raw content of a web page, and the css style sheet should control all the design and look of a web

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

Controlled Assessment Task. Question 1 - Describe how this HTML code produces the form displayed in the browser.

Controlled Assessment Task. Question 1 - Describe how this HTML code produces the form displayed in the browser. Controlled Assessment Task Question 1 - Describe how this HTML code produces the form displayed in the browser. The form s code is displayed in the tags; this creates the object which is the visible

More information

ENGINEERING DATA HUB VISUAL DESIGN SPECIFICATIONS VERSION 3. Created: 2/10/2017

ENGINEERING DATA HUB VISUAL DESIGN SPECIFICATIONS VERSION 3. Created: 2/10/2017 ENGINEERING DATA HUB VISUAL DESIGN SPECIFICATIONS VERSION 3 Created: 2/10/2017 Table of Contents ENGINEERING DATA HUB... 1 DESKTOP VIEW... 3 HEADER... 4 Logo... 5 Main Title... 6 User Menu... 7 Global

More information

Programming web design MICHAEL BERNSTEIN CS 247

Programming web design MICHAEL BERNSTEIN CS 247 Programming web design MICHAEL BERNSTEIN CS 247 Today: how do I make it?! All designers need a medium. Napkin sketches aren t enough.! This week: core concepts for implementing designs on the web! Grids!

More information

ADRION PROJECT WEBSITES USER S MANUAL

ADRION PROJECT WEBSITES USER S MANUAL ADRION PROJECT WEBSITES USER S MANUAL September 2018 Summary 1. The ADRION Project Website... 3 2. Content instructions... 3 3. Contacts for technical assistance... 3 4. Login... 3 5. Editable contents...

More information

BindTuning Installations Instructions, Setup Guide. Invent Setup Guide

BindTuning Installations Instructions, Setup Guide. Invent Setup Guide BindTuning Installations Instructions, Setup Guide Invent Setup Guide This documentation was developed by, and is property of Bind Lda, Portugal. As with any software product that constantly evolves, our

More information

Responsive Web Design and Bootstrap MIS Konstantin Bauman. Department of MIS Fox School of Business Temple University

Responsive Web Design and Bootstrap MIS Konstantin Bauman. Department of MIS Fox School of Business Temple University Responsive Web Design and Bootstrap MIS 2402 Konstantin Bauman Department of MIS Fox School of Business Temple University Exam 3 (FINAL) Date: 12/06/18 four weeks from now! JavaScript, jquery, Bootstrap,

More information

Web Development. With PHP. Web Development With PHP

Web Development. With PHP. Web Development With PHP Web Development With PHP Web Development With PHP We deliver all our courses as Corporate Training as well if you are a group interested in the course, this option may be more advantageous for you. 8983002500/8149046285

More information

Website Training Guide for Staff

Website Training Guide for Staff Website Training Guide for Staff Welcome to the General Website Training Guide. This tutorial will cover a brief introduction to the Research Website for St. Michael s Hospital, the Wordpress backend,

More information

WPI Project Center WordPress Manual For Editors

WPI Project Center WordPress Manual For Editors WPI Project Center WordPress Manual For Editors April 17, 2015 Table of Contents Who should use this manual... 3 Signing into WordPress... 3 The WordPress Dashboard and Left-Hand Navigation Menu... 4 Adding

More information

INTRODUCTION TO WEB DEVELOPMENT IN C++ WITH WT 4

INTRODUCTION TO WEB DEVELOPMENT IN C++ WITH WT 4 INTRODUCTION TO WEB DEVELOPMENT IN C++ WITH WT 4 Roel Standaert FOSDEM 2018 https://www.webtoolkit.eu/wt CONTENTS What is Wt? A simple Hello world Creating a larger application, with: Templates Style sheets

More information

How To Manually Edit Wordpress Theme Name And Author

How To Manually Edit Wordpress Theme Name And Author How To Manually Edit Wordpress Theme Name And Author Theme Tweaker lets you modify the colors in your theme with no CSS/PHP editing. Theme Tweaker displays the existing colors from your current theme,

More information

Meijer.com Style Guide

Meijer.com Style Guide TABLE OF CONTENTS Meijer.com Style Guide John Green Information Architect November 14, 2011 1. LAYOUT... 2 1.1 PAGE LAYOUT... 2 1.1.1 Header... 2 1.1.2 Body / Content Area... 3 1.1.2.1 Top-Level Category

More information

Comp-206 : Introduction to Software Systems Lecture 23. Alexandre Denault Computer Science McGill University Fall 2006

Comp-206 : Introduction to Software Systems Lecture 23. Alexandre Denault Computer Science McGill University Fall 2006 HTML, CSS Comp-206 : Introduction to Software Systems Lecture 23 Alexandre Denault Computer Science McGill University Fall 2006 Course Evaluation - Mercury 22 / 53 41.5% Assignment 3 Artistic Bonus There

More information

Title and Modify Page Properties

Title and Modify Page Properties Dreamweaver After cropping out all of the pieces from Photoshop we are ready to begin putting the pieces back together in Dreamweaver. If we were to layout all of the pieces on a table we would have graphics

More information

HTML Forms. 10 September, Dr Derek Peacock. This is a short introduction into creating simple HTML forms. Most of the content is

HTML Forms. 10 September, Dr Derek Peacock. This is a short introduction into creating simple HTML forms. Most of the content is This is a short introduction into creating simple HTML forms. Most of the content is based on HTML, with a few HTML5 additions. 1 Forms should be given a Name and an ID to make it easier to code their

More information

For instructions to change the logo, please refer to:

For instructions to change the logo, please refer to: Header Logo: For instructions to change the logo, please refer to: https://support3dcartcom/knowledgebase/article/view/630/5/how-do-i-add-logos-to-mystore Menu Links and Phone Number: Menu LInks: From

More information

NOBLE INSTITUTE OF COMPUTER ACCOUNTANCY

NOBLE INSTITUTE OF COMPUTER ACCOUNTANCY 1 The ability to combine name and addressed with a standard document is called a. document formatting b. database management c. mail merge d. form letters 2. Which enables us to send the same letter to

More information

A PRACTICAL GUIDE TO USING WIX TO BUILD A WEBSITE

A PRACTICAL GUIDE TO USING WIX TO BUILD A WEBSITE A PRACTICAL GUIDE TO USING WIX TO BUILD A WEBSITE AN AID TO ENABLE STUDENTS TO UNDERSTAND THE FUNDAMENTELS OF WEBSITE DESIGN WITHIN THE FRAMEWORK OF A WEBSITE PROJECT USING WEB DESIGN TOOLS YANNIS STEPHANOU

More information

USER GUIDE: EDITOR. Drag & drop system: Content Manager Style Editor Add Elements Undo/Redo Save...

USER GUIDE: EDITOR. Drag & drop system: Content Manager Style Editor Add Elements Undo/Redo Save... USER GUIDE: EDITOR Drag & drop system:... 2 1. Content Manager... 3 2. Style Editor... 5 3. Add Elements... 6 4. Undo/Redo... 13 5. Save... 13 When we access Zeendo s website editor, we can see a series

More information

Last class we looked at HTML5.

Last class we looked at HTML5. ADVANCED HTML5. #2 2.1 Recap 2 3 Last class we looked at HTML5. headings There are 6 levels available, ranging from h1 to h6. paragraphs links

More information

CSS Selectors. element selectors. .class selectors. #id selectors

CSS Selectors. element selectors. .class selectors. #id selectors CSS Selectors Patterns used to select elements to style. CSS selectors refer either to a class, an id, an HTML element, or some combination thereof, followed by a list of styling declarations. Selectors

More information

While editing a page, a menu bar will appear at the top with the following options:

While editing a page, a menu bar will appear at the top with the following options: Page Editor ===> Page Editor How Can I Use the Page Editor? The Page Editor will be your primary way of editing your website. Page Editor Basics While editing a page, you will see that hovering your mouse

More information

Exercise 1: Understand the CSS box model

Exercise 1: Understand the CSS box model Concordia University SOEN 287: Web Programming 1 Winter 2016 Assignment 2 Due Date: By 11:55pm Sunday February 14, 2016 Evaluation: 4% of final mark Late Submission: none accepted Type: Individual Assignment

More information

UNIT II Dynamic HTML and web designing

UNIT II Dynamic HTML and web designing UNIT II Dynamic HTML and web designing HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language

More information

Ninja Menus extension for Magento 2

Ninja Menus extension for Magento 2 Ninja Menus extension for Magento 2 User Guide Version 1.0 0 Table of Contents Ninja Menus I) Introduction... 2 II) Menu Grid... 3 III, Add new menu... 7 1. General setting... 8 2. Advanced settings...

More information

For instructions to change the logo, please refer to: ore

For instructions to change the logo, please refer to:   ore Header Note: VapeDay Theme have 2 versions. Version 1.0 with Left bar for long list of categories and Version 2.0 with No Left bar with categories in the header. While editing the theme files from template

More information

Responsive Web Design (RWD)

Responsive Web Design (RWD) Responsive Web Design (RWD) Responsive Web Design: design Web pages, so that it is easy to see on a wide range of of devices phone, tablet, desktop,... Fixed vs Fluid layout Fixed: elements have fixed

More information

Block & Inline Elements

Block & Inline Elements Block & Inline Elements Every tag in HTML can classified as a block or inline element. > Block elements always start on a new line (Paragraph, List items, Blockquotes, Tables) > Inline elements do not

More information

B. V. Patel Institute of Business Management, Computer & Information Technology, UTU

B. V. Patel Institute of Business Management, Computer & Information Technology, UTU B. C. A (Semester I) 030010108: Introduction to Web Design Lesson Plan Objective: To provide basic understanding of web and HTML for designing web pages in conjunction with HTML tags, text, videos and

More information

SOEN287: Web Programming

SOEN287: Web Programming Concordia University Department of Computer Science and Software Engineering SOEN287: Web Programming Summer 2016 Programming assignment #1 Deadline: Friday, July, 22, 2016 @ 23:55 Late submission: Type

More information

Content Elements. Contents. Row

Content Elements. Contents. Row Content Elements Created by Raitis S, last modified on Feb 09, 2016 This is a list of 40+ available content elements that can be placed on the working canvas or inside of the columns. Think of them as

More information

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50 Excel 2016: Part 1 Updated January 2017 Copy cost: $1.50 Getting Started Please note that you are required to have some basic computer skills for this class. Also, any experience with Microsoft Word is

More information

CS 1100: Web Development: Client Side Coding / Fall 2016 Lab 2: More HTML and CSS

CS 1100: Web Development: Client Side Coding / Fall 2016 Lab 2: More HTML and CSS Goals CS 1100: Web Development: Client Side Coding / Fall 2016 Lab 2: More HTML and CSS Practice writing HTML Add links and images to your web pages Apply basic styles to your HTML This lab is based on

More information

Tutor Handbook for WebCT

Tutor Handbook for WebCT Tutor Handbook for WebCT Contents Introduction...4 Getting started...5 Getting a course set up...5 Logging onto WebCT...5 The Homepage...6 Formatting and designing the Homepage...8 Changing text on the

More information

Watch the video below to learn more about formatting cells in Excel. *Video removed from printing pages. To change the font size:

Watch the video below to learn more about formatting cells in Excel. *Video removed from printing pages. To change the font size: Excel 06 Formatting Cells Introduction All cell content uses the same formatting by default, which can make it di icult to read a workbook with a lot of information. Basic formatting can customize the

More information

Guidelines for doing the short exercises

Guidelines for doing the short exercises 1 Short exercises for Murach s HTML5 and CSS Guidelines for doing the short exercises Do the exercise steps in sequence. That way, you will work from the most important tasks to the least important. Feel

More information