tips
Create your own StartpageA startpage is a homepage that you see when you open your browser.It often contains links to all kinds of places that you want to visit immediately after opening your browser. You can create your own browser startpage on your PC, laptop, or phone from scratch using HTML tags. Basically, a whole bunch of "daily" links on the opening page of your browser, besides your browser fovorite list. It is relatively easy to make. In short:
You can make a startpage in HTML with Notepad or you may want to use a program which create ready-to-use start
pages. (or even download an already made startpage). SOME easy to use HTML codes< the first character of every html code, close at the end with </attribute-name> <!-- this way you can add comments which has no influence on your webpage --> <br> makes a break at the end of a line <b> makes characters bold, close at the end with </b> <i> makes characters italic, close at the end with </i> creates a space between characters/words <table> creates a table, close the table at the end with </table> <tr> creates a row in a table, close the row at the end with </tr> <td> creates a column in a row, close the column at the end with </td> <td style="width:10%"> sets the size of the column, close the column at the end with </td> <td valign="top"> align the text to the top of the column, close the column at the end with </td> <img src="bloem-a.jpg" width="100"> add an image on the screen and forces it to 100 pixels wide The image must be in the same place (directory) as the startpage, however you can also use external images. |