What's new

HowTo Open Edge or Browser to a Fast, Quiet, Custom, Reliable Home Page of Your Own

sharpuser

Administrator
Staff member
KEEP IT SIMPLE AND LOCAL - MAKE YOUR OWN HOME PAGE FOR EDGE BROWSER

Last update 11/2019
(Update - Added one-click link to Windows Update here)
(Update - Added matching Home Page background to be the same as current Windows desktop wallpaper here)

Open Edge or Browser to a Fast, Quiet, Custom, Reliable Home Page of Your Own
When opening Edge Browser to the built-in "Start" page, a different Bing background every day, or some other portal or news page, it is sometimes a distraction to me. It can cause unwelcome distraction from others, too, such as in the workplace, in a cafe, or on a flight,where current news stories or weather or video ads or stock prices or Bing pictures might cause others to get nosy about what I am doing on my PC.

I might simply want a pre-determined background and a search bar. I can always keep the "Start" or other page associated with the little "home" icon at the top, and click it if I want.

So I desired to make a simple, real home page of my own.
Here's what Edge Browser looks like for me when I launch it (Favorites removed for privacy):

Screenshot (27).png


Screenshot (28).png


I did this by making my own .html file in a folder, and storing the background graphic file with it in that same folder. You only have to do this once.

Here's how you can do similarly:

1) Create a folder somewhere on your local PC. I wanted my page to be available for any of my PC or MacBook devices, so I chose to place my folder on the OneDrive cloud at
Code:
C:\Users\--youraccount--\OneDrive\HomePage
Substitute your own user accou where I show --youraccount--.

2) Click Search and type Notepad

3) Type the following barebones code into Notepad. Change the highlighted graphic name to the file you want to use as your background. In my case, I renamed a nice .jpg world map to be "MyHomePageBackground". If you wish to use Bing for your searches, you can specify "bing.com" rather than "google.com" in the text. You may likewise change the string "Google Search" to reflect Bing.

Screenshot (24).png


Code:
<!--***********************-->
<!-- My own local Home Page -->
<!--***********************-->
<!-- By Doug Sharp                -->
<!--***********************-->
<html>
<head>
<style type="text/css">
<!--
body {
background-image: url(MyHomePageBackground.jpg);
no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
}
-->
</style>
<title>Home</title>
</head>
<body>
<font size="-1">
<!-- Use of this code assumes agreement with the Google Custom Search Terms of Service. -->
<!-- The terms of service are available at http://www.google.com//cse/docs/tos.html -->
<form method="get" action="https://www.google.com/search">
<input type="text" name="q" size="31" width="48" height="80"> Search
<br>
<a href="ms-settings:windowsupdate" face="Arial" value="" size="-1" style="text-decoration: none">Windows Update</a>
</form>
<script type="text/javascript" src="https%3A%2F%2Fcse.google.com%2Fcse/tools/onthefly?form=searchbox_demo&lang="></script>
</font>
</body>
</html>
4) Save As, into your new folder from step 1) above. Name the file HomePage.html , and be sure to "Save as type" all files.

Screenshot (23).png


5) Put your graphic file into that same folder. Give it the name you specified in step 3) above.
oose filetype "Paste the following text. Modify the graphic filename (with the name of the file you will be using.

6) Start Edge Browser, choose Settings, and choose Open with, A specific page or pages, Custom, and paste in the full path and filename to your .html file. Also note that you begin the path name with "file:///". For example, I pasted in:
Code:
file:///C:\Users\doug\OneDrive\HomePage\HomePage.html
Be sure to press the "+" sign to the right of the entry to finish.
Screenshot (26).png


Or, if you don't want to type this path, you can use the File Explorer to browse to the folder where your new Home Page is stored, right-click, and choose to Open with … Edge. Edge will start, and you can then copy the URL right from the address bar.

You may want to paste this URL into two places for Edge settings, as shown here:

Annotation 2019-11-20 085047.png


You are done!

Because OneDrive works nicely with all my MacBook computers, the same home page shows up with Safari on those machines. I can modify it from any machine, and all my browser home pages sync. The .html code I supplied is compliant with all browsers. You may, of course, add items, change items, and tweak it to your own liking. If you mess it up, come back here for the pristine code.
 

ScottyS

Active Member
This is so cool.

upload_2015-11-6_23-24-38.png


I modified it to use Bing.com.
Might add links to my most often used sites and not have to use Edge's awful Favorites list.
 

Wayne Orwig

Active Member
Great idea. I may add some of my main shortcuts to it, yet try to keep it clean.
I think there should be a </form> just ahead of the </body>.


Screenshot%207.png
 
OP
sharpuser

sharpuser

Administrator
Staff member
I deliberately made this page barebones, leaving out elements when possible, but not so many that browsers fail. Of course, one may start adding links and images and other content, but that would defeat the intent of this thread.


HOW TO BRING THE SEARCH BOX DOWNWARDS ON THE PAGE
If you want to lower the search box, insert "<br>" (new line / break) as many times as desired just after the "<body> and before the <form>"

HOW TO AUTOMATICALLY MAKE YOUR HOME PAGE BACKGROUND THE SAME AS DESKTOP
To have your background image automatically show the same image that the desktop shows, alter the .html file to point to
Code:
file:///C:/Users/

Specify this highlighted string to always make your portal match the desktop background image.
(Change 'doug' to your own account name)

Screenshot (64).png


Here how that might look:

-

Screenshot (38).png


Screenshot (37).png




Screenshot (39).png



Screenshot (40).png




By the way, a few days ago someone saw my home page and asked me where I found such a simple portal. That prompted me to share with others.
 

Matt

Member
This is really cool!

One quick question - is it possible to have the cursor automatically in the search box?
 
OP
sharpuser

sharpuser

Administrator
Staff member
Bumping this thread for the benefit of new members.
Works very well with Windows 10, Edge, Chrome ...
 
Top