Search This Blog

Showing posts with label Links. Show all posts
Showing posts with label Links. Show all posts

Thursday, December 14, 2017

Learn HTML

More tutorials



I 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.

Stephanos Piperoglou has written a number of tutorials on Web design and construction.
From HTML 101 to I Shot the Serif and The Seven Habits of Effective Web Sites .

About HTML with Style


W3 Schools

Also:
HTML Tutorials


See all Topics

Friday, April 21, 2017

Busted Links

Verify


With the Expression Web Designer go to Site>Reports>Problems>Hyperlinks.
You will able to check if any links have failed and need to be fixed.

There are a few third-party shareware programs that do the same thing.

One of them is:

Xenu's Link Sleuth

It's free and will create a report that can be saved for reference.


See all Topics

Tuesday, February 07, 2017

YouTube Time Link

To the second

You can link directly to a specific time in a YouTube video. All you have to do is add a #t= anchor to the end of the URL that indicates the time position in minutes and seconds.

Here are the instructions:

Cadenhead.org


See all Topics

Tuesday, May 03, 2016

Animated GIFs

For use on the Web or PowerPoint


  • Harry the cat.com

    3,000+ Royalty Free Copyrighted Animated Gifs for non-commercial use

  • Fg-a.com

    Free Gifs & Animations, also editors, guestbook's, etc.

  • Gifs.net

    1,500 FREE Animated Gifs and many other items (gifs, jpgs, letters, buttons, backgrounds, etc.)

  • Web Developer.com

    There are more than 300 of them from which to choose.
 



See all Topics

Thursday, March 03, 2016

Clocks - Time Flies Like an Arrow

Fruit Flies Like a Banana


Here's a collection of clock sites.
There are also links to code to add a clock to your web site.

 Internet Clocks, Counters, and Countdowns


See all Topics

Monday, December 21, 2015

Seniors Surf Too

No Internet age limit


You don't have to show a drivers license (expired or not) to wander through cyber space,but. . .





As the oldest Baby Boomers turn 60, marketers and the media are waking up to the power of older consumers. Unlike today's seniors, Boomers are dedicated Internet users and broadband fans. As they approach the next phase of their lives, they will challenge companies to keep up with their ever-demanding ways, both online and off.

Also see:
King County Seniors on line

Pierce County Seniors


See all Topics

Monday, October 26, 2015

Send the Viewer on Their Way

Move on


If you have an old site that people still address, or a web page that has been moved, see this code and the explanations.

<html>

<head>
<meta http-equiv="REFRESH" content="3; URL=http://WWW.MiniByteTech.com">
</head>

<body bgcolor="#FFFFFF" text="#000000">


The operative line is:

<meta http-equiv="REFRESH" content="3; URL=http://WWW.MiniByteTech.com">


The value of content is in seconds.
The new location for this web site is WWW.MiniByteTech.com! You will automatically be redirected in 3 seconds. If your browser doesn't automatically load, click <a href="http://WWW.MiniByteTech.com">HERE</a>.

</body>
</html

PCMag.com:
Routing Your Web Site Visitors

Help2Go.com:
Redirecting a Web page

ISiteBuild.com:
How to Redirect a Web Page Using a 301 Redirect

This tools help you determine if the redirect you have created is Search Engine Friendly:

WebConfs.com:
Redirect Checker


See all Topics

Thursday, June 25, 2015

MS Groups

Web based Newsreader


We can't forget that, even with blogs and google, there are still news groups out there helping to solve common problems.

Microsoft has a site that organizes a number of groups and makes access easy on the web.
"The Web-based Newsreader allows you to participate in discussion groups directly in your Web browser; you don't need to install or configure anything. You can use the Web-based Newsreader to read, post, search for, and reply to messages in discussion groups from the part of Usenet that concerns Microsoft products and technologies."


Microsoft Discussion Groups

Help for the Web-based Newsreader


See all Topics

Tuesday, March 31, 2015

Link to PDF

Hyperlink to page numbers


The article tells how to link to named locations, but in most cases all you'll need is the page number:

Linking to Pages or Destinations Within PDFs
Dan Shea Associate Editor

Linking To Specific Pages
This is significantly simpler than linking to named destinations because it doesn't require any special steps to be taken in the preparation of the PDF file. I personally favor the page-linking method for this reason. In order to link through to a specific PDF page, begin with the domain, as you would for any web link:

http://www.mydomain.com/

Then add the name of the PDF document:

http://www.mydomain.com/myPDF.pdf

Then append "#page=" followed by the desired page number. For example, if you were looking to link to page 7:

http://www.mydomain.com/myPDF.pdf#page=7

So in all, the HTML link code would be:

<a href="http://www.mydomain.com/myPDF.pdf#page=7">Link text</a>



See all Topics