Showing posts with label html. Show all posts
Showing posts with label html. Show all posts

Saturday, January 05, 2013

The way I roll




I have my own way of making a blog roll. I create a page with all my blogs in links. I just click the icon on my desk top and all my blogs that I read come up in link fashion. If you have created a web page in html you can do this.

I have moved ten more of my blog list to the "Do not post often" list. Above, there are over a dozen more underneath the last name listed there. Sigh.  I hope they begin posting more and I can move them back up to my "daily"or almost daily list that I read. I enjoy them all.

Some have not posted in months. And some are quitting this year. Boo! Too sad. I always keep the link because I have known some to re-surface months (or even years) later. What a nice surprise when I click the old link and there they are - posting again.

This blog "roll" is easy to create (for me).

Open Notepad.

Here is an example, type this:




the href= is the link that you would type into the address bar of  your browser, the second part Daily Dose of Imagery is what you name the blog to identify it.

Note: the "wvs" is not a typo. You can read more about   wvs here.

Here is what a link to my page would look like, if you add a second one:





Now, the Peruby part is up to you. You can label it how you want.

When you go to save, do the "Save As" and make sure you enter .htm in the name instead of letting Notepad make it the default .txt name.



As shown above. I always save to my desktop. The icon should appear to look like your default browser. For example, my default browser = Firefox. So the icon will look like this:




When I click on it, the page opens up in a new tab in my browser, but each blog is a separate link and I just click on it and it goes straight to the blog. When I am finished reading, I click the Back Arrow and go to the next blog.

To edit or add more blogs, right-mouse-click on the icon on your desktop and choose Open with....then choose notepad. You can add, edit or delete the data in the file. When finished, simply choose "Save As..." again and save it as an  .htm file.  I think this kind of stuff is fun. :)

The instructions are probably lacking, since I received a phone call from my sister during the middle of posting so I hope you can understand it. If you really want to give it a go and have difficulty, just let me know and I will assist. If you don't want to communicate via the blog, my e-mail is on my profile.

I know there are blog rolls out there, Google Reader, and you can add all your readers to your blog page, and a hundred other different ways - but this is the way I roll. It works well for me. I can put the file on a thumb drive and take it with me w/out typing my personal blog page into a browser to get my reader list.


Edit:  Hah! I lied. I guess my e-mail is NOT listed in my profile. Not that I could see, anyway.

It is:         perubee   at     gmail   dot   com.





Wednesday, September 10, 2008

Bugs!

Another view of the bugs that ate my pumpkin. Or, at least they gave it their best shot. My Anti-Virus program has acted up since I updated it in July. This time when I called, they gave me the update to 2009 for free. I had forgotten that when I purchased the product in 2005 I had purchased for 3 computers. They gave me the product key and serial number for when I went to install it on the other 2 computers.

Eh. I forgot. My daughter will get hers updated, but my niece no longer lives here. That leaves me with an extra copy. My work laptop? No. I have the corporate edition there. My old work laptop (that work gives us) - maybe. It isn't worth much. 256MB of RAM in the poor thing. I guess that leaves me with an extra copy. Maybe I'll put it on a sister's computer.

I have more books from another library south of me. Web Design. More HTML, XHTML, CSS and JavaScript coming up. If I get the motivation maybe I'll change my blog background and have some fun. I also have an autobiography of John Denver. The Untold Story of The Eagles. The Mapmaker's wife. And, The Mothman Prophecies. The movie was weird, but I also got it because it is pretty close to Ohio. It was a bridge that connected Gallipolis to WV. That's close to where the Bob Evans farms are, by the way.

At work I am busy installing and learning Ubuntu. Fun stuff all around. My previous experience was with the flavor Mandrake. I think I will be returning to that flavor of Linux.

I finally mowed my grass. I cannot remember the last time it was cut. I had strange sprouts of weeds poking up here and there. In a couple of dry spots, I couldn't tell the line where I was supposed to mow. And it was dusty in places. We had a little rain a couple of days ago. Big booming thunder storm the other night, too.

I've been taking our cat, Moose into my bedroom with me every night so the cats don't fight through the night and wake my daughter. Moose is comfortable in there and I was hoping that we would bond a little more. All went smoothly for a week or so. Until last night. Cats are not dogs. I didn't take the necessary precautions. I was roused from my slumber by some scratching. I slapped my hand on the bed to make her stop. In my drowsy state it didn't occur to me what was going on. Can you tell where I am going with this?

Then it dawned on me. I jumped out of bed and snapped the light on. Too late. Moose was in the crouched position on my runner (thank God it wasn't in my bed!) on the floor. My daughter came in at the same time to tell me the telephone was making strange noises. I cleaned up Mooses' mess and unplugged the phone. Grumbling I went back to bed. It was 2:30 A.M. I sighed and rolled over. That's when I discovered the other mess. The wet mess. Oy vey. Peruby. You should have known better. I didn't sleep much after that. It kind of reminded me of when my daughter would throw up in the middle of the night. Pull sheets off the bed and throw them into the washing machine. Put a towel on the mattress or turn it over and put new sheets on the bed. And try to get back to sleep.

I should sleep good tonight with fresh, clean sheets, a deodorized mattress and no cat in my room tonight. They can kill each other out there for all I care.

Thursday, September 06, 2007

You've got the cutest little...


Baby Face

I am back to reading and studying html.

Such as:


  • Sunday

  • Monday

  • Tuesday

  • Wednesday

  • Thursday

  • Friday

  • Saturday


and:
    This paragraph

.......... and this sentence.....

will go .............

wherever.... I tell them to go!

It's fun.

Saturday, May 19, 2007

Saving as....


Open notepad or word pad and type the above onto the screen. Save the file to your desktop as filename.htm. You can call it whatever you want. I named mine personal.htm.

Close notepad (or wordpad). You should have an icon on your desktop titled filename.htm or whatever you named it. If you use Explorer it will be a blue lowercase e. Double click on the icon. It should open the page shown above.

This is the bare basics of creating a web page using html.

The first line:

< !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN" >

defines the doctype declaration. Actually, I am way behind in versions, so if one were to create a web page, you should go here for a list of current DTD (document type definition) to use.

The next line is HTML surrounded by the left and right carat symbols. This is the opening tag for Hyper Text Markup Language. (Basic web language).

The < > symbols form an opening statement. So if you open a statement, you must close it at some point and time. Closing the HTML tag looks like this: < /HTML >

The simple page above consists of the DTD, the HTML, Title, Head and body. I forgot to close the Center tag, so anything I add to the page would be centered.

What I am getting at here is you can view any web page on the Web. While viewing, take your mouse and click the right mouse button. This will bring up a pop-up menu. Using your left mouse button choose "View Source" . Depending on your browser you may have a different name for this feature. Firefox titles it "View Page Source" and Explorer calls it "View Source."

This will bring the source code up in a text formatted window. Save the file to your desktop. It should already have the extension of .htm or .html behind it. Close the text page and minimize your browser and any other programs you have open until you see your desktop.

Select the icon of the file you just saved by clicking on it once with your left mouse button. With the cursor still on the icon, click your right mouse button. This should bring up a pop up menu. Choose "Open with..." if you have that feature and open the file with word pad. (Notepad works, but word pad will filter out some very strange symbols that Notepad won't.).

Now, you can see the source code that folks use to write their web pages.

Sigh. Most use fancy canned packages like Dreamweaver or Frontpage. This is okay, but I wanted to learn the nuts and bolts. I wanted to create a web page from scratch. I have a long way to go and mine is not very fancy, but it is the way I like to do things.

The next time you are in your blog's dashboard area, cruise on over to the template section. Beginning with the < !DOCTYPE line and ending with the < /html >, select all of the text in between with your mouse and save this to a text file. Once the text is selected and high lighted, click Edit Save. Open notepad or word pad and click Edit, Paste. The template should appear on the text document. Choose Save as... and type filename.txt or whatever you want to call it. Template.txt. This way if you have any problems with your blog, you can go back and compare it to what you last saved it as to find out what happened.

And, once it is saved to your desktop or the folder of your choice, you can save another copy and name it template.htm. This should appear as the lower case blue e on your desktop (if you use Explorer). Double click it and you should see the bare bones of your blog's homepage.

Ah, I hope I didn't bore you too much with this post. I think I will take it and section it off into steps and post it on my homepage for basic html beginners. I don't know anybody that wants to learn html anymore, but I did. I don't know a lot about it, but I taught myself enough to start my own web page. I wanted to go farther with it, but alas - time.