Guest User

Startpage Getting Started Guide

a guest
Mar 22nd, 2016
2,175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.37 KB | None | 0 0
  1. Start pages are just like websites - but they're not hosted on the internet. They're built in the same way (With HTML and CSS, or other 'languages') and can have the same functionality and features, like animations, clocks, weather updates, newsfeeds, searches, embedded media etc. Every one is unique and can have its own features that suit its user
  2. ________________________________________________________________________________________________________________________
  3. Getting Started:
  4.  
  5. The simplest way to begin making your own is to find someone else's start page that you like, and then edit it yourself. Here are two links for startpages (Popular Github repo's and an Imgur gallery):
  6.  
  7. Popular start pages: http://pastebin.com/nEq2KqSw
  8.  
  9. Previously submitted pages: http://imgur.com/a/j0NHf/layout/horizontal
  10.  
  11. NOTICE: Some startpages will require more than HTML. Some rely on Javascript and CSS to add extra functionality and looks. Make sure that when you find a startpage that you like, you download ALL the necessary files... Not just the HTML.
  12. ________________________________________________________________________________________________________________________
  13. Editing and Customizing:
  14.  
  15. Now that you have successfully downloaded your first startpage, and pointed your browser towards it, why don't you spruce it up? To do this, you're going to need to know basic (or more advanced, depending upon what you want to do) HTML, CSS and Javascript.
  16.  
  17. - Learn some basic HTML and CSS to build your own here:
  18. https://www.codecademy.com/courses/web-beginner-en-HZA3b/0/1?curriculum_id=50579fb998b470000202dc8b
  19.  
  20. - Html5 Reference Page
  21. http://www.w3schools.com/tags/
  22.  
  23. - CSS Reference Page
  24. http://www.w3schools.com/cssref/default.asp
  25.  
  26. - Javascript Tutorial
  27. http://www.w3schools.com/js/default.asp
  28.  
  29. Of course, a great way to learn anything is to play around with it, so you should try that too! Look at other anon's code, try to guess what it does. Change some small things and see how that affects the whole page!
  30. ________________________________________________________________________________________________________________________
  31. Using Your Start Page:
  32.  
  33. Now that you have a startpage you like, you probably want to set it up so that your browser will use it. First thing to do is to find where you saved the HTML file (and .js and .css if they were included). The process here will differ depending on what browser that your using, and what operating system you're running. To specify a file on a *nix based system (Arch, Ubuntu, Mac, etc) you need to use forward-slashes (/). If you're on a Windows machine you must use backslashes "\". Another important distinction to make is that you must escape the first backslash with a second one "\\" because backslashes are considered special characters on the Windows operating system.
  34.  
  35. ########
  36. #Chrome#
  37. ########
  38. Chrome doesn't support custom new tab pages, so you'll need to use an extension. New Tab Redirect by Jim Schubert is the most common.
  39. https://chrome.google.com/webstore/detail/new-tab-redirect/icpgjfneehieebagbmdbhnlpiopdcmna?hl=en
  40. You will be able to specify an URL to load when that you open a new tab with this extension. This includes local files, such as your startpage.
  41.  
  42. #########
  43. #Firefox#
  44. #########
  45. You have a couple options here. The first and probably easiest way is to use an addon. The most common addon is Custom New Tab by Ed.
  46. https://addons.mozilla.org/en-US/firefox/addon/custom-new-tab/
  47. You will be able to specify an URL to load when that you open a new tab with this addon. This includes local files, such as your startpage.
  48. (NOTICE: At the time of writing this addon is not compatible with Firefox versions 40 and above).
  49.  
  50. The other, more in depth way that doesn't require any addons is as follows. Go to the address bar and type in "about:config". If this is your first time doing this, you will get a warning telling you that it's possible to seriously screw up your installation of Firefox. Take heed and don't go off the beaten path. Search for "browser.newtab.url". Once found you can edit the value found in the column to it's right. You must begin with "file://" (or "file:\" if you're on windows) This is important as it tells Firefox to look for a local file instead of a web page (a http:// page). After that type in the path/to/your/start/page/index.html. As long as the path you've entered is correct, when you open a new tab, your downloaded startpage will be used.
  51.  
  52. #######
  53. #Opera#
  54. #######
  55. **To be added**
  56. ________________________________________________________________________________________________________________________
  57.  
  58. A Long Slow Goodbye:
  59.  
  60. That's it! You're ready to begin! Post on the Startpage threads with any criticism, advice, critiques, cries for help, etc, etc. Someone is always there.
Advertisement
Add Comment
Please, Sign In to add comment