A New Mode of Browsing Web Tables on Small Screens

Size: px
Start display at page:

Download "A New Mode of Browsing Web Tables on Small Screens"

Transcription

1 A New Mode of Browsing Web Tables on Small Screens Wenchang Xu, Xin Yang, Yuanchun Shi Department of Computer Science and Technology, Tsinghua University, Beijing, P.R. China Abstract Nowadays, tables are widely used in web pages. However, for most web tables, we can only view information passively but cannot read them as we need, which may bring inconvenience when we are browsing on handheld devices, especially for large tables. Thus, we propose a new browsing mode to improve users experience when encountering large web tables on small screens. Based on automatic table detection and a good understanding of table contents, a new plug-in for Microsoft Internet Explorer is designed and implemented which provides a customized user interface to enable several new operations on web tables, such as sorting a table by some column/row or hiding and showing certain columns/rows. In the user study, we are pleased to find that our work is accepted and highly evaluated by most participants. Index Terms Web table, Small screens, Table extraction, Table understanding, User interface design D I. INTRODUCTION uring the past few years, web surfing on small screen devices such as mobile phones and PDAs is becoming more and more popular as it is more convenient and immediate to users than PCs. At the same time, the technology of web production develops rapidly and there is exploding information provided to users through many page elements, such as text, images, forms, tables and so on. Among these page elements, table is one of the most widely used one, as it is a two-dimension element consisting of many items, which displays all kinds of item features and shows relationships between different items and different features. However, most designs of web tables are only for PCs and just focus on how to visually and logically show large amount of data without considering their visual effects on small screen devices. Therefore, when we look at a web table on a mobile phone, we usually have to press direction keys all the time, searching up and down, left and right, to make sure of the column or row heading of a cell, or to find certain cells we need. This is really time-consuming and brings quite a lot of inconvenience to users of handheld devices. In this paper, we propose a new browsing mode of viewing web tables when users are using small screen devices. After research on features of handheld devices and detailed analysis and demonstration of user s habits when viewing web tables, we get to the conclusion that enabling actively operating tables such as sorting a table by some column/row or hiding and showing certain columns/rows can greatly improve user experience when users view web tables on handheld devices. We designed and implemented a plug-in for the Microsoft Internet Explorer as the first step, which provides a customized user interface to access these operations. In this paper, a genuine table [12] is used to display logically related data with significant semantics, while a non-genuine table is used to group non-related data or layout elements together in order to improve the appearance and understandability of web pages. Our implementation can be divided into three steps: automatically detecting genuine web tables by machine learning; understanding the contents of a genuine web table and reconstructing a customized structure for the table; designing the user interface so that users can easily access all functions of operating a genuine table. In the first step, we analyze the HTML documents, utilize web table features summarized by previous works [12] and realize the Navie Bayesian classification algorithm. In the second step, we analyze contents of the detected genuine tables and reconstruct the structure in the format of matrix, which provides functional interface that can be easily called by the user interface. In the last step, we design the user interface and integrate it with the Microsoft Internet Explorer. In the experiment, we conducted a user study on our work, which shows that the new browsing mode can effectively improve user experience of viewing web tables. Most users think high of this tool, especially the sorting and hiding functions. They also trust that the new browsing mode will bring more convenience and efficiency when users view web tables on small screen devices. We also compare our work with similar work of others, which is detailed described in the Related Work. Based on the experiment and the contrast with others work, we reach a conclusion and propose several points of our future work at the end of this paper.

2 II. NEW BROWSING MODE Generally speaking, our new browsing mode of viewing web tables is to actively operate certain tables so that they can be viewed better on small screens of handheld devices and users can get information they need from the tables more conveniently. How do we operate a table? Let s get to the answer gradually through research on features of handheld devices and detailed analysis and demonstration of user s habits when viewing web tables. A. Features of Handheld Devices Compared to PCs, handheld devices have three distinct features. The first feature is that screens of handheld devices are much smaller than those of PCs. As a result, what can be fully displayed on PCs may only show a small part on handheld devices, which means that although we can see a whole web table on a PC, we may only see several cells of the table on a small screen device. The second feature is that keys on handheld devices are generally much fewer and smaller than those of PCs, which means that operations on handheld devices become more difficult than that on PCs. For example, when browsing a web table, users can click the Page Down button to go to content below on PCs, while on a mobile phone, users can only click the Down button time and time again to go down gradually. The third feature is that operations on handheld devices are often carried out only by one finger of a user, while on a PC, users are using all fingers of both hands to type words. Therefore, operations on handheld devices are more time-consuming. The effect is especially obvious when the user is using a small screen device. The following group of pictures shows the effect of sorting and hiding. Fig. 1. Initial web table. Fig. 2. Sort the table ascending according to the heading of Singer. B. Users Habits When Viewing Web Tables Through personal experiences and survey on other people, we conclude users habits when viewing web tables as follows: look at the whole structure of the table look at certain columns or rows of the table find out the order of certain columns or rows of the table compare several columns or rows of the table So far, few tools have been developed to help users with the above browsing habits. In this case, if a user browsing with a mobile phone wants to sort the web table by certain column, he will have to go up and down again and again to find the order of the column, and then to sort the table according to the column. Also, if the user wants to compare the relations between two columns which are quite far from each other, he will have to go left and right again and again to match each pair of data. Therefore, it is rather time-consuming when users are browsing a web table, especially when they are using a small screen device. Based on the conclusions and problems above, we propose the following two active operations on web tables. Sort tables ascending or descending according to certain column or row when a heading exists in the column or row Hide and show certain column or row when a heading exists in the column or row Given these two functions, when a user wants to sort a table, he will just need to move the cursor to the heading he wants to sort by, and then click the sorting button. Also, when the user wants to compare two columns far away from each other, he just needs to hide columns between them and compare them directly. Fig. 3. Hide the column of Singer. III. IMPLEMENTATION With the above idea, we designed and implemented a plug-in for the Microsoft Internet Explorer to realize the functions as the first step of our research. Our implementation can be divided into three steps: Genuine tables detecting Contents understanding and table structure reconstructing User interface designing A. Genuine tables detecting We denote each web table as either genuine table or non-genuine table according to previous work [3, 6, 12]. Here we partially adopt the automatic web table detection method proposed by Wang and Hu [12] which summarizes 15 features of web tables, including 7 layout features and 8 content features.

3 Layout features are calculated based on row numbers, column numbers and cell length, while content features are calculated based on the number of different content types of table cells, such as image, form, hyperlink, alphabetical and so on. We firstly realize the Navie Bayesian classification algorithm with the above extracted features. We collect 1774 web tables, in which there are 233 genuine tables and 1541 non-genuine tables, and extract their features as training data. Then, when a web table is detected, its features will be passed to the classifier, which will tell whether it is a genuine table or not. B. Contents understanding and table structure reconstructing After a genuine table has been detected, we will farther deal with it from the following three aspects: determining table type identifying cell data type reconstructing table structure For the first aspect, we classify genuine web tables into three-sub-categories according to different table header styles, including column-wise, column-row-wise and row-wise. The type of each genuine table is decided depending on the layout of TH elements within it. If a genuine table contains no TH element, it will be classified as default (column-wise) and each cell in the first row will be regarded as a table header. For the second aspect, we define seven basic data types for table cells, including image, form, hyperlink, alphabetical, digit, empty and others, each corresponds to the content type of the same name used by the pre-processor. The type of each cell in a genuine table is identified based on six heuristics, namely H1-H6, as is shown below. No. Table 1. Heuristics for identifying cell data type Description properties. Each matrix element is recorded as an attribute-value pair with the header information, denoted as <<data-type, content>, isheader, headerinfo>. Compared to the DOM structure of a TABLE element, our customized structure can be traversed with much lower cost. C. User interface designing Based on the first two steps, we designed a customized user interface so that users can operate web tables conveniently when they are browsing on the web. The user interface is shown as the following figure, which is a floating toolbar with six buttons and adjustable transparency that automatically appears when the cursor is hovered on a header cell of a genuine web table. Fig. 4. User interface of the IE plug-in. Table 2 presents the function of each button from the left side of the toolbar to the right. By pressing these buttons, users can control the appearance of the table in different ways without changing the layout of the web page. Table 2. Functions provided by the toolbar No. Name Description F1 F2 Ascent Sorting Descent Sorting Sorting data of the entire table ascending ordered by the data of current column or row Sorting data of the entire table descending ordered by the data of current column or row H1 H2 H3 H4 If the cell contains FORM element, the cell is identified as form, otherwise use H2. If the cell contains IMG element, the cell is identified as image, otherwise use H3. If the cell contains A element, the cell is identified as hyperlink, otherwise use H4. If the inner text length (not including blanks) of the cell is 0, the cell is identified as empty, otherwise use H5. F3 Initial Order Restoring data of the entire table to initial order F4 Hiding Info Hiding current column or row F5 Showing Info Showing column or row next to the current one F6 Restoring All Restoring the table to the initial state H5 H6 If the inner text of the cell is consisted of only digital numbers, the cell is digit, otherwise use H6. If the inner text of the cell is consisted of only digital numbers and alphabetical characters, the cell is alphabetical, otherwise the cell is others. For the third aspect, we reconstruct each genuine table as a data matrix. The width of the matrix is equal to the maximum cell count in a row in the genuine table, while the height of the matrix is equal to the row count of the genuine table. Each element of the matrix represents a corresponding table cell in the genuine table. Table cells with ROWSPAN or COLSPAN tags are represented by multiple matrix elements of the same Besides the functions above, we provide several other functions to help to improve the user experience, which are shown as follows. Marking the button where the cursor is currently hovered with the yellow color. Marking the button which was clicked last time with the blue color. Creating a log file to record all events the toolbar catches, such as showing the toolbar, clicking certain buttons, adjusting the transparency and so on.

4 IV. EXPERIMENT The experiment is aimed at finding the effectiveness of our work. We divide our experiment into two parts. One part is to test the accuracy of detecting genuine web tables, and the other part is to do user study to get evaluation of the tool. A. Accuracy of detecting genuine web tables In the experiment, we collect 1774 web tables, in which the number of genuine tables is 233 and the number of non-genuine tables is We define Precision as the proportion of genuine tables in all tables that are detected as genuine, and Recall as the proportion of tables which are detected as genuine in all genuine tables. Follows are the Precision and Recall values of our Navie Bayesian Algorithm, compared with values of other three classification algorithms in Wang and Hu s paper [12]. Table 3. Values of Precision and Recall of several classification algorithms Algorithm Precision Recall tool in advance and then were asked to finish the tasks in four ways: toolbar disabled with normal size of browser; toolbar enabled with normal size of browser; toolbar disabled with the browser window sized 240 * 320 pix; toolbar enabled with the browser window sized 240 * 320 pix. We change the browser window size in order to simulate small screen devices. Table 5 and Table 6 shows the results calculated from automatically recorded timestamps of relevant operations, with F1-F6 denoting the six functions of the tool. Table 5. Result of Task 1 Task 1 Status of the toolbar Disabled Enabled Disabled Enabled Browser window size Normal Normal 240* *320 F F Navie Bayesian 90.50% 93.99% Decision Tree 97.50% 94.25% Avg. times of using F1-F6 F F SVM(linear) 91.39% 93.91% SVM(RBF) 95.81% 95.98% Result shows that our implementation of the easy Navie Bayesian algorithm is quite accurate. B. User study We carry out the user study based on assumes that our work can help greatly when users want to sort a table by certain column or row and when they want to compare data of distant columns or rows when browsing web tables. We designed two scenarios and assigned a specific task for each scenario as follows. Table 4. Scenarios and tasks designed for user study No. Scenario Task 1 2 You are browsing a 5-column genuine web table which displays the top 50 popular songs ordered by their rankings, with titles showed in col. 2 and hyperlinks for trial audition showed in col. 5. You are browsing a 10-column genuine web table which displays the 20 teams of England Premier League ordered by their rankings, with team names showed in col. 2 and goals showed in col. 7. Given the titles of three songs, find out whether they are in the list of songs and click on the hyperlinks for trial audition. Find the teams with the largest and smallest number of goals. We recruited 7 participants, all of whom are Chinese graduate students familiar with web browsing on desktops using Microsoft Internet explorer. They were showed how to use the F F Avg. time 47.06s 16.73s 69.37s 35.08s Table 6. Result of Task 2 Task 2 Status of the toolbar Disabled Enabled Disabled Enabled Browser window size Normal Normal 240* *320 Avg. times of using F1-F6 F F F F F F Avg. time 23.60s 7.52s 35.27s 10.37s From the result, we can see that both the sorting and the hiding functions are quite often used. Participants spent much less time when the toolbar is enabled, especially when the browsing window size is limited. Nearly all participants showed that they quite enjoyed the new browsing mode.

5 V. RELATED WORK At the first step of our implementation, we need to detect genuine tables in web pages. So we review existing works on web table analysis. Since late 1990s, web table analysis has attracted many attentions from researchers in the areas of Web Data Mining and Information Retrieval [2, 3, 5, 6, 7, 12, 13, 14]. Basically, there are two ways of processing web tables. One is based on the HTML source code, and the other is based on the visual rendition of web pages. For the first way, Lim and Ng [7] proposed to automatically retrieve hierarchical data from HTML tables by constructing the content tree for each table, without pre-requiring the internal table structure. Yang and Luk [13] first presented the definition of Web Table Mining and developed a frame work for comprehensively analyzing the structural aspects of web tables. Wang and Hu [12] focused on web table detection and proposed to automatically classify web tables either as genuine or non-genuine by machine learning, which is the method we refer to in our research. For the visual way, Krupl and Herzog [6] concentrated on detecting genuine web tables relied on the visual rendition of web pages. Later, Gatterbauer et al. [3] extended the idea of visually guided web table detection and used a model of the visual representation of web pages to extract domain-independent information from web tables. We also review related works on the browsing mode of web tables. Asakawa and Itoh [1] developed a non-visual web table navigation method enabling both horizontal and vertical navigation with a table cursor, a table pointer and a cell-jumping key. However, they only dealt with gridded tables, that is, TABLE elements defined in HTML documents but without COLSPAN and ROWSPAN. Recently, Tajima and Ohnishi [11] proposed three modes for web table browsing on small screens: normal mode, record mode and cell mode. They concentrated on how to present a segment of a large web table as the user requires, without concerning about the relationships among data in different table cells, and they did not present any user evaluation. Compared with our work, Tajima and Ohnishi s only provides presentation re-rendering functions like hiding unnecessary rows or columns, but cannot support advanced functions like sorting data of the entire table ordered by the data of current row or column. VI. CONCLUSION AND FUTURE WORK In this paper, we propose a new browsing mode to improve user experience when people encounter large web tables on small screen devices. Based on automatic table detection and a good understanding of table contents, we designed and implemented a plug-in for the Microsoft Internet Explorer, which provides a customized user interface to access several operations on web tables, such as sorting a table by some column/row or hiding and showing certain columns/rows. Through user study, we are pleased to see that our work is accepted and highly evaluated by most people. However, our work still has three limitations. Firstly, our detection of genuine tables is just based on the HTML TABLE elements. Web tables generated by CSS are not considered. In the future, we plan to detect genuine tables based on visual renditions. Secondly, our implementation is just an instance of Microsoft IE model, which still has a distance from our target of realizing it on handheld devices. So we will work on that later. Thirdly, we will improve our user interface based on suggestions we get through user study. REFERENCES [1] Asakawa, C., Itoh, T.: User Interface of a Nonvisual Table Navigation Method. In: ACM SIGCHI Conference on Human Factors in Computing Systems (CHI 99), pp ACM, New York, NY, USA (1999) [2] Cohen, W.W., Hurst, M., Jensen, L.S.: A Flexible Learning System for Wrapping Tables and Lists in HTML Documents. In: 11th International Conference on World Wide Web (WWW 02), pp ACM, New York, NY, USA (2002) [3] Gaterbauer, W., Bohunsky, P., Herzog, M., Krüpl, B., Pollak, B.: Towards Domain-Independent Information Extraction from Web Tables. In: 16th International Conference on World Wide Web (WWW 07), pp ACM, New York, NY, USA (2007) [4] Hassan,T., Baumgartner, R.: Table Recognition and Understanding from PDF Files. In: 9 th International Conference on Document Analysis and Recognition (ICDAR 07), pp IEEE Computer Society, Washington, D.C., USA (2007) [5] Hurst, M.: Classifying TABLE Elements in HTML. In: 11th International Conference on World Wide Web (WWW 02), Poster Paper. (2002) [6] Krüpl, B., Herzog, M.: Visually Guided Bottom-Up Table Detection and Segmentation in Web Documents. In: 15th International Conference on World Wide Web (WWW 06), pp ACM, New York, NY, USA (2006) [7] Lim, S.J., Ng, Y.K.: An Automated Approach for Retrieving Hierarchical Data from HTML Tables. In: 8th ACM International Conference on Information and Knowledge Management (CIKM 99), pp ACM, New York, NY, USA (1999) [8] Liu, Y., Bai, K., Mitra, P., Giles, C.L.: Automatic Searching of Tables in Digital Libraries. In: 16th International Conference on World Wide Web (WWW 07), pp ACM, New York, NY, USA (2007) [9] Pinto, D., McCallum, A., Wei, X., Croft, W.B.: Table Extraction Using Conditional Random Fields. In: 26th Annual International ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR 03), pp ACM, New York, NY, USA (2003) [10] Ramel, J.Y., Crucianu, M., Vincent, N., Faure, C.: Detection, Extraction and Representation of Tables. In: 7th International Conference on Document Analysis and Recognition (ICDAR 03), pp IEEE Computer Society, Washington, D.C., USA (2003) [11] Tajima, K., Ohnishi, K.: Browsing Large HTML Tables on Small Screens. In: 21st Annual ACM Symposium on User Interface Software and Technology (UIST 08), pp ACM, New York, NY, USA (2008) [12] Wang. Y.L., Hu, J.Y.: A Machine Learning Based Approach for Table Detection on The Web. In: 11th International Conference on World Wide Web (WWW 02), pp ACM, New York, NY, USA (2002) [13] Yang, Y.C., Luk, W.S.: A Framework for Web Table Mining. In: 4th ACM CIKM International Workshop on Web Information and Data Management (WIDM 02), pp ACM, New York, NY, USA (2002) [14] Yoshida, M., Torisawa, K., Tsujii, J.: A Method to Integrate Tables of the World Wide Web. In: 1st International Workshop on Web Document Analysis (WDA 01), pp (2001)

A Web Page Segmentation Method by using Headlines to Web Contents as Separators and its Evaluations

A Web Page Segmentation Method by using Headlines to Web Contents as Separators and its Evaluations IJCSNS International Journal of Computer Science and Network Security, VOL.13 No.1, January 2013 1 A Web Page Segmentation Method by using Headlines to Web Contents as Separators and its Evaluations Hiroyuki

More information

The Comparative Study of Machine Learning Algorithms in Text Data Classification*

The Comparative Study of Machine Learning Algorithms in Text Data Classification* The Comparative Study of Machine Learning Algorithms in Text Data Classification* Wang Xin School of Science, Beijing Information Science and Technology University Beijing, China Abstract Classification

More information

QuickStart Guide MindManager 7 MAC

QuickStart Guide MindManager 7 MAC QuickStart Guide MindManager 7 MAC Contents Welcome to Mindjet MindManager...... 1 Technical Support and Registration... 1 About this User Guide............... 1 Learn about MindManager and maps... 2 What

More information

Microsoft Word 2013 Working with tables

Microsoft Word 2013 Working with tables Microsoft Word 2013 Working with tables LIBRARY AND LEARNING SERVICES WORKING WITH TABLES www.eit.ac.nz/library/ls_computer_word2013_tables.html What is a table? A table is information arranged in horizontal

More information

Using Adobe Contribute 4 A guide for new website authors

Using Adobe Contribute 4 A guide for new website authors Using Adobe Contribute 4 A guide for new website authors Adobe Contribute allows you to easily update websites without any knowledge of HTML. This handout will provide an introduction to Adobe Contribute

More information

Lesson 5 Introduction to Cascading Style Sheets

Lesson 5 Introduction to Cascading Style Sheets Introduction to Cascading Style Sheets HTML and JavaScript BASICS, 4 th Edition 1 Objectives Create a Cascading Style Sheet. Control hyperlink behavior with CSS. Create style classes. Share style classes

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

P3e REPORT WRITER CREATING A BLANK REPORT

P3e REPORT WRITER CREATING A BLANK REPORT P3e REPORT WRITER CREATING A BLANK REPORT 1. On the Reports window, select a report, then click Copy. 2. Click Paste. 3. Click Modify. 4. Click the New Report icon. The report will look like the following

More information

Word Tutorial 3. Creating a Multiple- Page Report COMPREHENSIVE

Word Tutorial 3. Creating a Multiple- Page Report COMPREHENSIVE Word Tutorial 3 Creating a Multiple- Page Report COMPREHENSIVE Objectives Format headings with Quick Styles Insert a manual page break Create and edit a table Sort rows in a table Modify a table s structure

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

Research on Design and Application of Computer Database Quality Evaluation Model

Research on Design and Application of Computer Database Quality Evaluation Model Research on Design and Application of Computer Database Quality Evaluation Model Abstract Hong Li, Hui Ge Shihezi Radio and TV University, Shihezi 832000, China Computer data quality evaluation is the

More information

Smart Browser: A framework for bringing intelligence into the browser

Smart Browser: A framework for bringing intelligence into the browser Smart Browser: A framework for bringing intelligence into the browser Demiao Lin, Jianming Jin, Yuhong Xiong HP Laboratories HPL-2010-1 Keyword(s): smart browser, Firefox extension, XML message, information

More information

Information Push Service of University Library in Network and Information Age

Information Push Service of University Library in Network and Information Age 2013 International Conference on Advances in Social Science, Humanities, and Management (ASSHM 2013) Information Push Service of University Library in Network and Information Age Song Deng 1 and Jun Wang

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Designing Adhoc Reports i Copyright 2012 Intellicus Technologies This

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

Discovering Advertisement Links by Using URL Text

Discovering Advertisement Links by Using URL Text 017 3rd International Conference on Computational Systems and Communications (ICCSC 017) Discovering Advertisement Links by Using URL Text Jing-Shan Xu1, a, Peng Chang, b,* and Yong-Zheng Zhang, c 1 School

More information

Joomla! 2.5.x Training Manual

Joomla! 2.5.x Training Manual Joomla! 2.5.x Training Manual 1 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

More information

Data. Selecting Data. Sorting Data

Data. Selecting Data. Sorting Data 1 of 1 Data Selecting Data To select a large range of cells: Click on the first cell in the area you want to select Scroll down to the last cell and hold down the Shift key while you click on it. This

More information

Introduction to Microsoft Office 2007

Introduction to Microsoft Office 2007 Introduction to Microsoft Office 2007 What s New follows: TABS Tabs denote general activity area. There are 7 basic tabs that run across the top. They include: Home, Insert, Page Layout, Review, and View

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

Comment Extraction from Blog Posts and Its Applications to Opinion Mining

Comment Extraction from Blog Posts and Its Applications to Opinion Mining Comment Extraction from Blog Posts and Its Applications to Opinion Mining Huan-An Kao, Hsin-Hsi Chen Department of Computer Science and Information Engineering National Taiwan University, Taipei, Taiwan

More information

Book 5. Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons

Book 5. Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons Chapter 1: Slides with SmartArt & Pictures... 1 Working with SmartArt Formatting Pictures Adjust Group Buttons Picture Styles Group Buttons Chapter 2: Slides with Charts & Shapes... 12 Working with Charts

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

More information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information Tutorial A database is a computerized record keeping system used to collect, store, analyze and report electronic information for a variety of purposes. Microsoft Access is a database. There are three

More information

Free-link Topology Navigation on Statistical Table Objects: Metadata Schema and User Interface

Free-link Topology Navigation on Statistical Table Objects: Metadata Schema and User Interface Free-link Topology Navigation on Statistical Table Objects: Metadata Schema and User Interface Xiangming Mu and Gary Marchionini Interaction Design Lab, School of Information and Library Science University

More information

Exploring Microsoft Office Word 2007

Exploring Microsoft Office Word 2007 Exploring Microsoft Office Word 2007 Chapter 3: Enhancing a Document Robert Grauer, Keith Mulbery, Michelle Hulett Objectives Insert a table Format a table Sort and apply formulas to table data Convert

More information

A new method of comparing webpages

A new method of comparing webpages A new method of comparing webpages Hao Jiang, CS657 Fall, 2013 Abstract Webpage comparison compare the similarity of two webpages. It can be useful in areas such as distinguishing phishing website and

More information

Web Design, 5 th Edition

Web Design, 5 th Edition Planning a Successful Website: Part 2 Web Design, 5 th Edition Chapter Objectives Discuss the relationship between page length, content placement, and usability Complete Step : Specify the s navigation

More information

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1.

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1. -Using Excel- Note: The version of Excel that you are using might vary slightly from this handout. This is for Office 2004 (Mac). If you are using a different version, while things may look slightly different,

More information

SAS Visual Analytics 8.2: Working with Report Content

SAS Visual Analytics 8.2: Working with Report Content SAS Visual Analytics 8.2: Working with Report Content About Objects After selecting your data source and data items, add one or more objects to display the results. SAS Visual Analytics provides objects

More information

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support Web Services Service Delivery & Support UNIVERSITY OF TASMANIA UTAS CMS Easy Edit Suite Workshop V3 Web Service, Service Delivery & Support UWCMS Easy Edit Suite Workshop: v3 Contents What is Easy Edit

More information

Single Menus No other menus will follow necessitating additional user choices

Single Menus No other menus will follow necessitating additional user choices 57 UNIT-III STRUCTURES OF MENUS Single Menus No other menus will follow necessitating additional user choices Sequential Linear Menus Simultaneous Menus 58 Hierarchical Menus When many relationships exist

More information

Website Management with the CMS

Website Management with the CMS Website Management with the CMS In Class Step-by-Step Guidebook Updated 12/22/2010 Quick Reference Links CMS Login http://staging.montgomerycollege.edu/cmslogin.aspx Sample Department Site URLs (staging

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

Mobile Query Interfaces

Mobile Query Interfaces Mobile Query Interfaces Matthew Krog Abstract There are numerous alternatives to the application-oriented mobile interfaces. Since users use their mobile devices to manage personal information, a PIM interface

More information

Navigating in SPSS. C h a p t e r 2 OBJECTIVES

Navigating in SPSS. C h a p t e r 2 OBJECTIVES C h a p t e r 2 Navigating in SPSS 2.1 Introduction and Objectives As with any new software program you may use, it is important that you are able to move around the screen with the mouse and that you

More information

1.0 Overview For content management, Joomla divides into some basic components: the Article

1.0 Overview For content management, Joomla divides into some basic components: the Article Joomla! 3.4.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

Step-by. A Very Warm Welcome to the Exciting World of Computers. Let s get Started It s easy with my Step- Instructions

Step-by. A Very Warm Welcome to the Exciting World of Computers. Let s get Started It s easy with my Step- Instructions A Very Warm Welcome to the Exciting World of Computers Let s get Started It s easy with my Step- by-step Instructions This lesson is all about getting to know your Main Menu Bar at the top of your screen.

More information

Adobe Dreamweaver CS5 Tutorial

Adobe Dreamweaver CS5 Tutorial Adobe Dreamweaver CS5 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

REVEL ZoomText Accessibility Documentation for Students REVEL 3.0

REVEL ZoomText Accessibility Documentation for Students REVEL 3.0 REVEL ZoomText Accessibility Documentation for Students REVEL 3.0 Email: info@barrierbreak.com Page 1 of 9 Contents REVEL ZoomText Accessibility Documentation for Students... 1 1. General Introduction...

More information

Beyond 20/20. Browser - English. Version 7.0, SP3

Beyond 20/20. Browser - English. Version 7.0, SP3 Beyond 20/20 Browser - English Version 7.0, SP3 Notice of Copyright Beyond 20/20 Desktop Browser Version 7.0, SP3 Copyright 1992-2006 Beyond 20/20 Inc. All rights reserved. This document forms part of

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

Contents SECTION-I : LINUX

Contents SECTION-I : LINUX Contents SECTION-I : LINUX 1. Introduction to Linux... 13 What is Linux?... 14 History of Linux... 14 Advantages of Using Linux... 15 Why Red Hat?... 1 6 Hardware Requirements... 16 Installing Fedora Core

More information

Dreamweaver Basics Workshop

Dreamweaver Basics Workshop Dreamweaver Basics Workshop Robert Rector idesign Lab - Fall 2013 What is Dreamweaver? o Dreamweaver is a web development tool o Dreamweaver is an HTML and CSS editor o Dreamweaver features a WYSIWIG (What

More information

Html basics Course Outline

Html basics Course Outline Html basics Course Outline Description Learn the essential skills you will need to create your web pages with HTML. Topics include: adding text any hyperlinks, images and backgrounds, lists, tables, and

More information

ORB Education Quality Teaching Resources

ORB Education Quality Teaching Resources These basic resources aim to keep things simple and avoid HTML and CSS completely, whilst helping familiarise students with what can be a daunting interface. The final websites will not demonstrate best

More information

User Guide. Web Intelligence Rich Client. Business Objects 4.1

User Guide. Web Intelligence Rich Client. Business Objects 4.1 User Guide Web Intelligence Rich Client Business Objects 4.1 2 P a g e Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence 4.1... 5 Log into EDDIE...

More information

Numbers Basics Website:

Numbers Basics Website: Website: http://etc.usf.edu/te/ Numbers is Apple's new spreadsheet application. It is installed as part of the iwork suite, which also includes the word processing program Pages and the presentation program

More information

A Review on Identifying the Main Content From Web Pages

A Review on Identifying the Main Content From Web Pages A Review on Identifying the Main Content From Web Pages Madhura R. Kaddu 1, Dr. R. B. Kulkarni 2 1, 2 Department of Computer Scienece and Engineering, Walchand Institute of Technology, Solapur University,

More information

The CHECKBOX Quick Start Guide

The CHECKBOX Quick Start Guide The CHECKBOX Quick Start Guide This guide will provide step-by-step directions in order to help you get started faster with Checkbox. First, Some Basic Concepts The CHECKBOX Survey Lifecycle Create Edit

More information

Specification Manager

Specification Manager Enterprise Architect User Guide Series Specification Manager Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents The Specification Manager 3 Specification Manager - Overview

More information

Recognition of HTML Table Data and Its Application for Displaying on Mobile Terminal Screen

Recognition of HTML Table Data and Its Application for Displaying on Mobile Terminal Screen Vol. 44 No. SIG 12(TOD 19) Sep. 2003 HTML, HTML Web 82% 78% Recognition of HTML Table Data and Its Application for Displaying on Mobile Terminal Screen Hidetaka Masuda, Shuichi Tsukamoto, Daisuke Yasutomi,

More information

Creating Accessible Documents in Microsoft Word

Creating Accessible Documents in Microsoft Word Creating Accessible Documents in Microsoft Word Microsoft Word is a commonly-used application among individuals with a variety of disabilities, and is reasonably accessible. The text within Word documents

More information

Creating a Website in Schoolwires

Creating a Website in Schoolwires Creating a Website in Schoolwires Overview and Terminology... 2 Logging into Schoolwires... 2 Changing a password... 2 Navigating to an assigned section... 2 Accessing Site Manager... 2 Section Workspace

More information

Additional Support and Disability Advice Centre

Additional Support and Disability Advice Centre Additional Support and Disability Advice Centre GUIDELINES TO PRODUCING ACCESSIBLE WORD DOCUMENTS 1 INTRODUCTION As well as allowing adaptation of font, background colour and layout to suit personal preferences,

More information

Excel 2013 Intermediate

Excel 2013 Intermediate Excel 2013 Intermediate Quick Access Toolbar... 1 Customizing Excel... 2 Keyboard Shortcuts... 2 Navigating the Spreadsheet... 2 Status Bar... 3 Worksheets... 3 Group Column/Row Adjusments... 4 Hiding

More information

ProSystem fx Site Builder. enewsletters

ProSystem fx Site Builder. enewsletters ProSystem fx Site Builder enewsletters December 2011 Copyright 2010-2011, CCH INCORPORATED. A Wolters Kluwer business. All Rights Reserved. Material in this publication may not be reproduced or transmitted,

More information

Tai-Jin Lee. Handout #5 11/01/2005. Navigation

Tai-Jin Lee. Handout #5 11/01/2005. Navigation CS1c Handout #5 11/01/2005 Tai-Jin Lee HTML Layout and Design Layout and design of a webpage is of utmost importance. Without at good layout and navigation system, webpages are just plain bad. Navigation

More information

CounselLink Reporting. Designer

CounselLink Reporting. Designer CounselLink Reporting Designer Contents Overview... 1 Introduction to the Document Editor... 2 Create a new document:... 2 Document Templates... 3 Datasets... 3 Document Structure... 3 Layout Area... 4

More information

Chapter 4: Single Table Form Lab

Chapter 4: Single Table Form Lab Chapter 4: Single Table Form Lab Learning Objectives This chapter provides practice with creating forms for individual tables in Access 2003. After this chapter, you should have acquired the knowledge

More information

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) More on Relative Linking. Learning Objectives (2 of 2)

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) More on Relative Linking. Learning Objectives (2 of 2) Web Development & Design Foundations with HTML5 Ninth Edition Chapter 7 More on Links, Layout, and Mobile Slides in this presentation contain hyperlinks. JAWS users should be able to get a list of links

More information

Welcome to Introduction to Microsoft Excel 2010

Welcome to Introduction to Microsoft Excel 2010 Welcome to Introduction to Microsoft Excel 2010 2 Introduction to Excel 2010 What is Microsoft Office Excel 2010? Microsoft Office Excel is a powerful and easy-to-use spreadsheet application. If you are

More information

Learning Adobe DreamWeaver CC. Module 1 Contents. Chapter 1: Introduction to DreamWeaver CC

Learning Adobe DreamWeaver CC. Module 1 Contents. Chapter 1: Introduction to DreamWeaver CC Module 1 Contents Chapter 1: Introduction to DreamWeaver CC Design Considerations...1-1 Types of Graphics...1-2 Backgrounds and Text...1-2 Planning the Navigation...1-2 The DreamWeaver Screen...1-3 Workspaces...

More information

A Guide to Quark Author Web Edition 2015

A Guide to Quark Author Web Edition 2015 A Guide to Quark Author Web Edition 2015 CONTENTS Contents Getting Started...4 About Quark Author - Web Edition...4 Smart documents...4 Introduction to the Quark Author - Web Edition User Guide...4 Quark

More information

Keynote 08 Basics Website:

Keynote 08 Basics Website: Website: http://etc.usf.edu/te/ Keynote is Apple's presentation application. Keynote is installed as part of the iwork suite, which also includes the word processing program Pages and the spreadsheet program

More information

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR REPORT... 3 DECIDE WHICH DATA TO PUT IN EACH REPORT SECTION...

More information

HTML Extraction Algorithm Based on Property and Data Cell

HTML Extraction Algorithm Based on Property and Data Cell IOP Conference Series: Materials Science and Engineering OPEN ACCESS HTML Extraction Algorithm Based on Property and Data Cell To cite this article: Detty Purnamasari et al 2013 IOP Conf. Ser.: Mater.

More information

Siteforce Pilot: Best Practices

Siteforce Pilot: Best Practices Siteforce Pilot: Best Practices Getting Started with Siteforce Setup your users as Publishers and Contributors. Siteforce has two distinct types of users First, is your Web Publishers. These are the front

More information

EXCEL Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development

EXCEL Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development Information Technology MS Office Excel 2007 Users Guide EXCEL 2007 Using Excel for Data Query & Management IT Training & Development (818) 677-1700 Training@csun.edu TABLE OF CONTENTS Introduction... 1

More information

Creating Accessible Word Documents Tutorial

Creating Accessible Word Documents Tutorial Creating Accessible Word Documents Tutorial 1. Use uniform heading structure/style guides to reinforce structure To keep trail of the structure, you can open the Navigation Pane. Edit built-in heading

More information

Dreamweaver CS3 Concepts and Techniques

Dreamweaver CS3 Concepts and Techniques Dreamweaver CS3 Concepts and Techniques Chapter 3 Tables and Page Layout Part 1 Other pages will be inserted in the website Hierarchical structure shown in page DW206 Chapter 3: Tables and Page Layout

More information

EXCEL 2003 DISCLAIMER:

EXCEL 2003 DISCLAIMER: EXCEL 2003 DISCLAIMER: This reference guide is meant for experienced Microsoft Excel users. It provides a list of quick tips and shortcuts for familiar features. This guide does NOT replace training or

More information

Combining Review Text Content and Reviewer-Item Rating Matrix to Predict Review Rating

Combining Review Text Content and Reviewer-Item Rating Matrix to Predict Review Rating Combining Review Text Content and Reviewer-Item Rating Matrix to Predict Review Rating Dipak J Kakade, Nilesh P Sable Department of Computer Engineering, JSPM S Imperial College of Engg. And Research,

More information

INFS 2150 / 7150 Intro to Web Development / HTML Programming

INFS 2150 / 7150 Intro to Web Development / HTML Programming XP Objectives INFS 2150 / 7150 Intro to Web Development / HTML Programming Designing a Web Page with Tables Create a text table Create a table using the , , and tags Create table headers

More information

REVEL 3.0 Android/Magnification Accessibility Documentation for Students REVEL 3.0

REVEL 3.0 Android/Magnification Accessibility Documentation for Students REVEL 3.0 REVEL 3.0 Android/Magnification Accessibility Documentation for Students REVEL 3.0 Email: info@barrierbreak.com Page 1 of 8 Contents REVEL 3.0 Android/Magnification Accessibility Documentation for Students...

More information

User Manual. Administrator s guide for mass managing VirtueMart products. using. VM Mass Update 1.0

User Manual. Administrator s guide for mass managing VirtueMart products. using. VM Mass Update 1.0 User Manual Administrator s guide for mass managing VirtueMart products using VM Mass Update 1.0 The ultimate product management solution for VirtueMart! Contents Product Overview... 3 Feature List...

More information

Text and Lists Use Styles. What Are Styles?

Text and Lists Use Styles. What Are Styles? Creating Accessible Word Documents Using Microsoft Word 2003 Cassandra Tex, MBA Assistive Technology Specialist Student Disability Resource Center Humboldt State University Word documents are inherently

More information

Appraisal Module. 1. Introduction 1.01 Changes in this Version. 2. Start Page 2.1 Survey details.

Appraisal Module. 1. Introduction 1.01 Changes in this Version. 2. Start Page 2.1 Survey details. Appraisal Module 1. Introduction 1.01 Changes in this Version 2. Start Page 2.1 Survey details. 3. Manage Appraisal Users 3.1 Initial setup 3.2 New User 3.3 Setting Appraisal Permissions 4. User Preferences

More information

Useful Google Apps for Teaching and Learning

Useful Google Apps for Teaching and Learning Useful Google Apps for Teaching and Learning Centre for Development of Teaching and Learning (CDTL) National University of Singapore email: edtech@groups.nus.edu.sg Table of Contents About the Workshop...

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

Instructions for the Exam

Instructions for the Exam Instructions for the Exam 1. Task Number, and Task Title Task Description: This provides an overview of what the task is asking you to perform Task Location: This section defines what the task applies

More information

EKTRON 101: THE BASICS

EKTRON 101: THE BASICS EKTRON 101: THE BASICS Table of Contents INTRODUCTION... 2 TERMINOLOGY... 2 WHY DO SOME PAGES LOOK DIFFERENT THAN OTHERS?... 5 LOGGING IN... 8 Choosing an edit mode... 10 Edit in context mode (easy editing)...

More information

The principle of a fulltext searching instrument and its application research Wen Ju Gao 1, a, Yue Ou Ren 2, b and Qiu Yan Li 3,c

The principle of a fulltext searching instrument and its application research Wen Ju Gao 1, a, Yue Ou Ren 2, b and Qiu Yan Li 3,c International Conference on Education, Management, Commerce and Society (EMCS 2015) The principle of a fulltext searching instrument and its application research Wen Ju Gao 1, a, Yue Ou Ren 2, b and Qiu

More information

Creating a Website Using Weebly.com (June 26, 2017 Update)

Creating a Website Using Weebly.com (June 26, 2017 Update) Creating a Website Using Weebly.com (June 26, 2017 Update) Weebly.com is a website where anyone with basic word processing skills can create a website at no cost. No special software is required and there

More information

Adobe Dreamweaver CS4

Adobe Dreamweaver CS4 Adobe Dreamweaver CS4 About Dreamweaver Whether creating simple blog pages complex web sites, Dreamweaver provides users with a powerful set of web-design tools necessary f the task. Its userfriendly interface

More information

ArtOfTest Inc. Automation Design Canvas 2.0 Beta Quick-Start Guide

ArtOfTest Inc. Automation Design Canvas 2.0 Beta Quick-Start Guide Automation Design Canvas 2.0 Beta Quick-Start Guide Contents Creating and Running Your First Test... 3 Adding Quick Verification Steps... 10 Creating Advanced Test Verifications... 13 Creating a Data Driven

More information

ImageNow eforms. Getting Started Guide. ImageNow Version: 6.7. x

ImageNow eforms. Getting Started Guide. ImageNow Version: 6.7. x ImageNow eforms Getting Started Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

4D Ajax Framework 1.1 ADDENDUM

4D Ajax Framework 1.1 ADDENDUM ADDENDUM The 4D Ajax Framework has undergone significant enhancement in version 1.1, with new features added, enhancements made to existing features, performance improvement, as well as bug fixes. This

More information

Lesson 15 Working with Tables

Lesson 15 Working with Tables Working with Tables Computer Literacy BASICS: A Comprehensive Guide to IC 3, 4 th Edition 1 Objectives Create a table and insert text. Insert and delete rows and columns. Adjust column width and row height.

More information

Computer Applications Final Exam Study Guide

Computer Applications Final Exam Study Guide Name: Computer Applications Final Exam Study Guide Microsoft Word 1. To use -and-, position the pointer on top of the selected text, and then drag the selected text to the new location. 2. The Clipboard

More information

Gradebook User Guide. PowerTeacher

Gradebook User Guide. PowerTeacher PowerTeacher Released February 18, 2009 Document Owner: Documentation Services This edition applies to Release 1.5.1 of the PowerTeacher software and to all subsequent releases and modifications until

More information

Extracting Visual Snippets for Query Suggestion in Collaborative Web Search

Extracting Visual Snippets for Query Suggestion in Collaborative Web Search Extracting Visual Snippets for Query Suggestion in Collaborative Web Search Hannarin Kruajirayu, Teerapong Leelanupab Knowledge Management and Knowledge Engineering Laboratory Faculty of Information Technology

More information

Center for Faculty Development and Support Making Documents Accessible

Center for Faculty Development and Support Making Documents Accessible Center for Faculty Development and Support Making Documents Accessible in Word 2007 Tutorial CONTENTS Create a New Document and Set Up a Document Map... 3 Apply Styles... 4 Modify Styles... 5 Use Table

More information

Lesson 15 Working with Tables

Lesson 15 Working with Tables Working with Tables Computer Literacy BASICS: A Comprehensive Guide to IC 3, 5 th Edition 1 Objectives Create a table and insert text. Insert and delete rows and columns. Adjust column width and row height.

More information

The Dreamweaver Interface

The Dreamweaver Interface The Dreamweaver Interface Let s take a moment to discuss the different areas of the Dreamweaver screen. The Document Window The Document Window shows you the current document. This is where you are going

More information

Enterprise Timetabler Beginners Training Worksheet 1

Enterprise Timetabler Beginners Training Worksheet 1 Enterprise Timetabler Beginners Training Worksheet 1 1. Basic Customisation of the Enterprise Interface It is possible to change the default layouts of the Activity and View panes to show extra information

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

Chapter 4 Notes. Creating Tables in a Website

Chapter 4 Notes. Creating Tables in a Website Chapter 4 Notes Creating Tables in a Website Project for Chapter 4 Statewide Realty Web Site Chapter Objectives Define table elements Describe the steps used to plan, design, and code a table Create a

More information

FirmSite Control. Tutorial

FirmSite Control. Tutorial FirmSite Control Tutorial 1 Last Updated June 26, 2007 by Melinda France Contents A. Logging on to the Administrative Control Center... 3 Using the Editor Overview:... 3 Inserting an Image... 7 Inserting

More information

Semantic HTML Page Segmentation using Type Analysis

Semantic HTML Page Segmentation using Type Analysis Semantic HTML Page Segmentation using Type nalysis Xin Yang, Peifeng Xiang, Yuanchun Shi Department of Computer Science and Technology, Tsinghua University, Beijing, P.R. China {yang-x02, xpf97}@mails.tsinghua.edu.cn;

More information