Introduction: Save Time Browsing Instructables

About: I'm an experimentalist, a scientist and I have a tendency to do things just for the sake of doing them, or to find out what they're like. I love life, show me something I can feel good about. I've got an ho…

If you are a user who is clicking all over the place to find out what's new, or keeping an eye on what's been discussed in the Community this might be of some use.

Create your own home page, which links you directly to where you want to go.

Step 1: Hyperlinks

Step 2: HTML

Now add HTML to the text file to give you a local web-page.

At the top of the file add:
<html>
<head>
<title>(put the title of your page in here)</title>
</head>
<body>
Now add <a href=" before each hyperlink
Close with ">
add a description
Close the link with </a>
Add a line return with <br>
And repeat.
See next step...

Step 3: HTML

<html>
<head>
<title>Instructables</title>
</head>
<body>
<a href="https://www.instructables.com/">Instructables</a><br>
<a href="https://www.instructables.com/tag/type:question/?count=30&sort=RECENT">Recent questions</a><br>
<a href="https://www.instructables.com/tag/type:id/?sort=RECENT">Recent Instructables</a><br>
<a href="https://www.instructables.com/community?categoryGroup=all&category=all">Forums all</a><br>
<a href="https://www.instructables.com/community?categoryGroup=all&category=all&limit=20&sort=RECENT">Forums recent topics</a><br>
<a href="https://www.instructables.com/community?categoryGroup=all&category=all&limit=20&sort=RECENT_POSTS">Forums recent posts</a><br>
<a href="https://www.instructables.com/you/">Me</a><br>

Step 4: Finish

Now close the HTML and BODY tags by inserting:
</body>
</html>

Step 5: The Finished Page

<html>
<head>
<title>Instructables</title>
</head>
<body>
<a href="https://www.instructables.com/">Instructables</a><br>
<a href="https://www.instructables.com/tag/type:question/?count=30&sort=RECENT">Recent
questions"</a><br>
<a href="https://www.instructables.com/tag/type:id/?sort=RECENT">Recent Instructables</a><br>
<a href="https://www.instructables.com/community?categoryGroup=all&category=all">Forums all</a><br>
<a href="https://www.instructables.com/community?categoryGroup=all&category=all&limit=20&sort=RECENT">Forums recent topics</a><br>
<a href="https://www.instructables.com/community?categoryGroup=all&category=all&limit=20&sort=RECENT_POSTS">Forums recent posts</a><br>
<a href="https://www.instructables.com/you/">Me</a><br>
</body>
</html>

InstructablesInstructables
Recent questions"
Recent Instructables
Forums all
Forums recent topics
Forums recent posts
Me

Step 6: But You Don't Have To!

Because I have. Just download the file, save to your desktop and open with your web-browser.

This is HTML at it's most basic. It serves a purely functional purpose, which is why I haven't done anything more with it.

L