tools for web page creation

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

DREAMWEAVER Welcome to our website!
Creating a Web Page with Word IS 460 Notes by Thomas Hilton.
Using Audacity in the Lab 1.Open Audacity 2.Save the project on H:\drive 3.Project >Edit ID3 tags 4.Record your voice 5.Stop 6.Save again 7.Edit 8.Save.
CASE SCENARIO: GOOGLE DRIVE.  When Google Drive first launched, it served as a place to store your files in the cloud so that they could be accessed.
PowerPoint Scavenger Hunt Lauren Davis EDTD 3011 A Summer 2007.
Join the A-Team ACCESSIBILITY-TEAM. Session 1 EVALUATE ACCESSIBILITY OF HTML FILES AND SET THE PATH TO A D2L STYLE SHEET.
Converting Microsoft Office Documents Bill Weber E-Learning Systems Administrator E-Learning Operations.
V. Beyond HTML: CSS, JavaScript, Plug-ins A Web Accessibility Primer: Usability for Everyone Office of Web Communications.
 Adding Background image  Creating internal links  Creating external links  Save your document as a webpage(.mht) file.
Congratulations! You are ready to launch your Decision Support System to the company’s web site. After you have finished the Excel, PowerPoint, Word, and.
Different Streaming Technologies. Three major streaming technologies include:
Lecture Creating HTML Pages in Excel Save File as Web Page CHOOSE: File | Save As | Other Formats CHOOSE: Web Page TYPE: Filename (Remember HTML.
Lecture Converting Access to HTML and Beyond. Reports Converted to a Web Page A report designed for paper can be easily exported to HTML Right-click on.
Putting Your PowerPoint into WebCT. To put your PowerPoint online Create an appropriate folder Upload the PowerPoint file to that folder Create a link.
ETT 429 Spring 2007 Web Design I.
Announcement #1 1 Lecture 9. Announcement #2  Midterm exam will be on Oct. 12 (Tuesday)  pm – 1.45 pm  Exam will cover all materials till Oct.
FIRST COURSE Creating Web Pages with Microsoft Office 2007.
Putting Documents on the Web Vivien Hall Central Computing Services.
Downloading © Copyright William Rowan Objectives By the end of this you will be able to Download text and images from the internet for analysis,
The basics of the Online Portal
Publications, design sets, web pages
Dreamweaver Jing Xie (Jean) Sept. 29, Index Background Getting Started Editing Pages Site Management Advantage and Disadvantage Reference and Additional.
Sharing Alice Exporting Movies, Code, and Web Pages By Elizabeth Liang under the direction of Professor Susan Rodger Duke University July 2009, modified.
Translating to.html tools for web page creation. Plugins Several common document types are displayed using “plugins” in your browser –word documents *.doc.
Making Websites with Dreamweaver BTT. What is Dreamweaver?  “What You See Is What You Get” (WYSIWYG) web design software  Rather than writing code and.
Saving PowerPoint Presentations as Web Pages Your Logo Here Open the PowerPoint Presentation. To convert to a format compatible with web browsers, launch.
McGraw-Hill Technology Education © 2004 by the McGraw-Hill Companies, Inc. All rights reserved. Office Word 2003 Working Together 1 Word 2003 and Your.
Click on CIS120/17 to go to website for course. The week of will tell you what is planned for the week and what has been assigned.
10. File Management. Computers and information Computers are all about processing the information. The information has to be organized in a systematic.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
Convert a Word Document to PDF File With Bookmarks UNDP - POGAR Training and Support Document Required software: 1.MS Word Adobe Acrobat Professional.
Making the website. Get your folders sorted first Create a new folder in “N” called “My hockey website” Create folders inside called “Documents”, “images”
How To Upload YouTube Video?. Copy The Video From Your Camera To Your Computer Before you upload the video to YouTube, make any edits that.
MicrosoftTM SharePoint Content Management SystemTutorial
Create Online Surveys for Free by Using Google Documents
Microsoft Office 2010 Basics and the Internet
Microsoft Office 2010 Basics and the Internet
Marking Up with XHTML Tags describe how a web page should look
Learning the Basics – Lesson 1
Word 2016.
CSE 3 – Fall 2015 Sierra Ampudia
Adding a File to a Course
How Our Courses Work To progress through this slide show, simply click your mouse or use your arrow keys next back.
HOW TO ATTACH HYPERLINKS TO A POWERPOINT DOCUMENT POWERPOINT MASTER-CLASS TOOL FOR A WOW PRESENTATION #TeacherTeachTech CHIMA EZUO S.
My web site..
Mac Basics Ashley Short, CCHS ITF.
Presenter Mindy Pistol Ext
Horizontal Centering Using the menu bar
Exporting EBSCO eBooks pages to Google Drive
Embedding Graphics in Web Pages
HTML Introduction Lecture 8.
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Project Documentation Generation
Introduction to the ISB Intranet
How to PostPower Point Presentations
How to Make HTML and CSS Files Using Notepad++
Unit 4 Test CSS Test.
HOW TO MAKE PAGES FOR A WEB SITE
File Management Staying Organized.
Print, , Save Results TUTORIAL ToxPlanet Documents Print, , Save Results
EXPERTIndex™ “Contains” Print, , Save Results
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
How Our Courses Work To progress through this slide show, simply click your mouse or use your arrow keys next back.
What do you think is different between these two images?
WJEC GCSE Computer Science
Marking Up with XHTML Tags describe how a web page should look
Presentation transcript:

tools for web page creation Translating to .html tools for web page creation

Plugins Several common document types are displayed using “plugins” in your browser word documents *.doc powerpoint presentations *.ppt portable document format *.pdf Both *.doc and *.ppt can be converted to html so no plugins are needed

Why? Advantages Disadvantages browsers without plugins can display them They don’t cause “pauses” while the plugins load Sources are uniform in their types (all html) Disadvantages Some structure may be lost

Preliminaries First create a new directory Make a copy of the files you want to translate.

Translating powerpoint step 1 Open the powerpoint file Choose the “save as” option in the file tab

Translating powerpoint step 2 In the choose a file window that pops up select the “save as webpage” format

Translating powerpoint step 3 Note two things are aded to the directory a directory called “presentation_files” a file called “presentation.html”

Translating word step 1 Open the word document then select the save as option from the file tab.

Translating word step 2 In the file selection window choose “save as webpage”

Translating word step 3 Note creation of “paper.htm” and directory “paper_files”

What’s inside the directories All kinds of things. Many are pointed to from in the file “presentation.htm” using absoulute links. You must move the directory and the file together when you publish.

Using the newly created files <title>Practice Translating</title> <CENTER> <BIG>Practice Translating</BIG> </CENTER> <p> <UL> <LI> <A HREF="paper.htm">paper as html</A> <LI> <A HREF="presentation.htm">presentation as html</A> </UL> <A HREF="../DailyRecord.html#Today"> Back to the Daily Record.</A> <A HREF="../index.html"> Back to the class web-page.</A> create a html file and put links to the created files. The links can be absolute or relative. I used relative links because my html file is in the same directory as the translated files

What’s it look like?