Using the HTML Agility Package to modify web pages

Step 1: Create a new Visual Studio project Create a new Console application: Step 2: Use the Package Manager console to install the HTML Agility package. Select Tools > NuGet Package Manager > Package Manager Consol Enter: Install-Package HtmlAgilityPack Step 3: Add the reference to the HtmlAgilityPack.dll Right click you References folder, and browse to …

Continue reading ‘Using the HTML Agility Package to modify web pages’ »

Using Google Docs Viewer to embed online documents into your web page

Some instructions on using Google Docs Viewer to embed online documents into your web page. Step 1: use the iframe tag to create an “internal” frame within your document So the essential part of embedding online documents into your we page is to use the iframe tag in your html. The iframe tag accepts 3 …

Continue reading ‘Using Google Docs Viewer to embed online documents into your web page’ »

Getting started with EasyTree – a jquery tree menu builder

EasyTree is a JavaScript Menu handling mechanism that is concise but easy to configure. It has a comprehensive set of options that can be tweaked according to the complexity of the requirement: anything from a basic tree menu to being able to handle the firing of events to the dragging and dropping of tree elements. …

Continue reading ‘Getting started with EasyTree – a jquery tree menu builder’ »

Applying reset stylesheets to HTML using CSS

As John Meyer states: “The goal of a reset stylesheet is to reduce browser inconsistencies in things like default line heights, margins and font sizes of headings, and so on.” I am using this pretty much as is. The only difference is that I have also deined my own style for “h1” styles heading, using …

Continue reading ‘Applying reset stylesheets to HTML using CSS’ »