
|
Book Home Page Bloglines 1906 CelebrateStadium 2006 OfficeZealot Scobleizer TechRepublic AskWoody SpyJournal Computers Software Microsoft Windows Excel FrontPage PowerPoint Outlook Word Host your Web site with PureHost! |
![]() Thursday, May 01, 2008 – Permalink – Color pickersFormating toolsColorcode Generator Color Scheme Color Schemer Colorcombo Iconico Irfanview Kira's Web Toolbox Mediagods.Com Pagetutor.Com Visbone Also: Unsafe ColorMatch to see web color combinations. More Color Matching Tools See all Topics internet <Doug Klippert@ 6:07 AM
Comments:
Post a Comment
Thursday, April 10, 2008 – Permalink – Web NewsAdd news to your siteYou can add information from other RSS or Atom sites to your own web page.
"Including up-to-date information from other web sites and news services bolsters your site's content and lets your visitors know they can come back to get updates on topics that are related to their interests. FeedSweep is a new, free service that allows anyone to include news feeds on his or her web site. I was pointed here by a reference on Excel News See all Topics internet <Doug Klippert@ 5:03 AM
Comments:
Post a Comment
Friday, March 21, 2008 – Permalink – Free HTML ToolsCollection of helpful utilitiesAXCEL216's MAX Speeed WinDOwS Tricks + Secrets: HTML Authoring Webmaster Resources
See all Topics internet Labels: HTML <Doug Klippert@ 7:41 AM
Comments:
Post a Comment
Monday, January 21, 2008 – Permalink – Page-break CSSBefore or afterYou can put a break on a web page like you can in a document. A Cascading Style Sheet makes it simple "The stub-ends left when paragraphs end on the first line of a page are called widows. They have a past but not a future, and they look foreshortened and forlorn." Orphans are parts of a paragraph that begin on the previous page. An orphan has a future, but no past. The only paging properties supported by Internet Explorer 7, Safari 3 and Firefox 2 are page-break-before and page-break-after. Etiquette of Pagination See all Topics internet <Doug Klippert@ 6:23 AM
Comments:
Post a Comment
Saturday, December 22, 2007 – Permalink – Fuzzy PadHTML PreviewThere you are, out in the wilderness of PCdom without a copy of FrontPage around. How do you find out what HTML tags looks like? (fire up notepad, save the file, open with a browser) Try FuzzyPad There are no text files to save and reload. Just write a few lines of text, a few tags, even paste some text in the box from some other application if you want. When you press the button, it will show you how what's in the box will look when run through the web browser your using now. ![]() HTML Preview Preview HTML in a new window by entering it into the form. This script allows you to pass anything to a new window. Instructions help you create a preview on your own web page. Such as: <Doug Klippert@ 6:34 AM
Comments:
Post a Comment
Saturday, November 24, 2007 – Permalink – MHTMLOne file web pagesWhen a web page is created using HTML, the coding is normally contained in one file and the graphics in separate folders. The Mime HTML or MHT/MHTML format changed that. Starting with Office 2000 as an add-in and carried through XP as a "Web Archive" option, the format emerged in Office 2003 as a "Single file web page" selection in the File Save As dialog box.
Labels: Expression, HTML, Internet <Doug Klippert@ 6:21 AM
Comments:
Post a Comment
Sunday, November 11, 2007 – Permalink – New WindowPick your targetExpression Web/FrontPage/HTML provides the opportunity to choose how a page opens when you click on a hyperlink. Create a hyperlink as you usually would by selecting the text (or graphic) you want to use for the link. Choose Insert > Hyperlink... (or use Ctrl-K or the toolbar icon On the right side of the Create Hyperlink window you'll see a button named "Target frame"; click the button. You'll get the Target Frame dialog box. In the "Common targets" field, select New Window. Click OK, then click OK to close the Create Hyperlink dialog box. Your hyperlink will now open a new browser window when clicked. ![]() The code would appear like this: <a target="_blank" href="TCC/Blog/blogger.html">Blog</a> To make it the page default, place the following code in the "head" section: <base target="_blank"> See all Topics internet <Doug Klippert@ 6:20 AM
Comments:
Post a Comment
Saturday, October 27, 2007 – Permalink – Learn HTMLHEADINGMore tutorialsI like to read more than one author on a subject. It helps to clarify the sticky parts and each writer has a little bit different perspective on the subject. WebReference.com has a good collection of material related to the Web and the Internet in general.
Labels: HTML <Doug Klippert@ 6:21 AM
Comments:
Post a Comment
Friday, October 19, 2007 – Permalink – Type, what it looks likeScreen fonts previewThis is a tool that lets you see how different typefaces will look on the screen. It also allows you to compare three fonts at once. "The Typetester is an online application for comparison of the fonts for the screen. Its' primary role is to make web designer's life easier. As the new fonts are bundled into operating systems, the list of the common fonts will be updated." TypeTester See all Topics internet <Doug Klippert@ 4:58 AM
Comments:
Post a Comment
Thursday, October 11, 2007 – Permalink – Guide to CSSMap through the forestDustin Diaz: "Ok. Let's set the record straight. There is no official guide for each and every CSS shorthand property value. So let's work together and put one together shall we? CSS Guide See all Topics internet <Doug Klippert@ 8:06 AM
Comments:
Post a Comment
Saturday, September 15, 2007 – Permalink – W3C ValidationStandardsWeb pages are written in a language called Hyper Text Markup Language; HTML The latest version of HTML is 4.01. There is a move to upgrade the code to Extensible Hyper Text Markup Language. XHTML is compatible with XML (EXtensible Markup Language) allowing applications to more easily exchange data. In preparation for making the change, edit your web pages so that element and attribute names are in lower case. XHTML is case-sensitive. Use <p> rather than <P>. Also end tags are required. Make sure that <p> is followed by </p>. <br> should be written <br /> and <hr> as <hr />. For more information see: The W3C validation site
Labels: HTML <Doug Klippert@ 7:31 AM
Comments:
Post a Comment
Sunday, September 09, 2007 – Permalink – New LineShift Enter
Labels: HTML <Doug Klippert@ 7:35 AM
Comments:
Post a Comment
Wednesday, August 29, 2007 – Permalink – Define URL PiecesMore than dot comGoogle engineer and blogger Matt Cutts has defined the pieces that make up a Uniform Resource Locator. At least as Google refers to them when they're sitting around in their backrooms
Parts of a URL See all Topics internet <Doug Klippert@ 7:48 AM
Comments:
Post a Comment
Saturday, August 18, 2007 – Permalink – CSSCascading Style SheetsAs a web page is formatted in FrontPage, the style choices are applied to each element. To format the body of the page, the HTML code might be: <body background="blue" color="white" font-family="times, serif" font-size=10pt>Every page on the site would need to be coded this way in order to have a consistent look. Cascading Style Sheets will simplify the problem. On an external page the elements can be defined like this: body {Each page would contain a reference to the CSS definitions: <head>When the element "body" is used it will now use the CSS references. For more information see: Using Cascading Style Sheets on Your Web Site David Berry and Eric Meyer's Site In this Blog: CSS Links and: More Cascading Style Sheet Help [Edited entry 9/4/2004] See all Topics internet Labels: CSS, Expression, HTML, Layout <Doug Klippert@ 6:53 AM
Comments:
Post a Comment
Monday, August 13, 2007 – Permalink – Surrogate Image ServerTemporary
Imgred.com See all Topics internet <Doug Klippert@ 6:55 AM
Comments:
Post a Comment
Sunday, June 24, 2007 – Permalink – DOCTYPECustomizeAt the top of an HTML file source, you may see some code that indicates the version of HTML that is going to be used. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">The O'Reilly Net.com has a discussion: DOCTYPE Explained.
From Thomas Brunt's Outfront.net Editing the FP 2003 Default Template
Also: Fix Your Site With the Right DOCTYPE! Choosing a DOCTYPE The global structure of an HTML document See all Topics internet Labels: HTML <Doug Klippert@ 7:48 AM
Comments:
Post a Comment
Tuesday, May 22, 2007 – Permalink – Backgrounds PlusAlso Clocks and stuffThis site generates backgrounds. They also have a collection of clocks and the code to create transitions and graphic additions. ToolShell.com See all Topics internet <Doug Klippert@ 6:27 AM
Comments:
Post a Comment
Wednesday, April 04, 2007 – Permalink – Embed MediaCode machine
See all Topics
internet <Doug Klippert@ 8:14 AM
Comments:
Post a Comment
|